我有一个非常简单的对象,如下所示:
public class Item extends SugarRecord {
Long id;
String uuid;
Integer minor;
Integer major;
public Item() { }
public Item(Long id, String uuid, Integer minor, Integer major) {
this.id = id;
this.uuid = uuid;
this.minor = minor;
this.major = major;
}
}
我希望给定的 ID 是主键,我不希望 SugarORM 自动生成新 ID。有可能做这样的事情吗?...听起来很简单,但我无法弄清楚...