litesuits / android-lite-orm

LiteOrm is a fast, small, powerful ORM framework for Android. LiteOrm makes you do CRUD operarions on SQLite database with a sigle line of code efficiently.
http://litesuits.com?form=gorm
Apache License 2.0
1.49k stars 361 forks source link

无法保存树形结构数据 #66

Open QYZX opened 7 years ago

QYZX commented 7 years ago

@Table("tb_people") public class People {

@PrimaryKey(AssignType.AUTO_INCREMENT)
private long id;     //ID
@Mapping(Relation.OneToMany)
private ArrayList<People> child;

}

例如上面的类型,进行级联保存后查询DB文件,保存关系映射的表只有一个字段:ID