原因:greenDao不识别Obiect类型的元素
举例:
@Entity
public class CommunityDonationBean{
@Id
private int id;
private Object text_content;
}
将其中的text_content类型换成具体的属性类型
原因:greenDao不识别Obiect类型的元素
举例:
@Entity
public class CommunityDonationBean{
@Id
private int id;
private Object text_content;
}
将其中的text_content类型换成具体的属性类型