在Dao層,使用@Insert注解所返回的long值即id瓤摧,如果是集合或者數(shù)組可返回List<Long>或long[]
如:
'''
@Insert
public long insert(Entity entity);
@Insert
public long[] insert(List<Entity> entity);
@Insert
public List<Long> insert(List<Entity> entity);
'''
在Dao層,使用@Insert注解所返回的long值即id瓤摧,如果是集合或者數(shù)組可返回List<Long>或long[]
如:
'''
@Insert
public long insert(Entity entity);
@Insert
public long[] insert(List<Entity> entity);
@Insert
public List<Long> insert(List<Entity> entity);
'''