在Dao层,使用@Insert注解所返回的long值即id,如果是集合或者数组可返回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,如果是集合或者数组可返回List<Long>或long[]
如:
'''
@Insert
public long insert(Entity entity);
@Insert
public long[] insert(List<Entity> entity);
@Insert
public List<Long> insert(List<Entity> entity);
'''