package eVVM.apk.entity; import org.greenrobot.greendao.annotation.Entity; import org.greenrobot.greendao.annotation.Generated; import org.greenrobot.greendao.annotation.Id; /** * Created by Android Studio. * User: zbb * Date: 2019/8/12 * Describe: NRCReportEntity */ @Entity public class NRCReportEntity { @Id private Long id; private String vnDetailBean; private int type; @Generated(hash = 1976015523) public NRCReportEntity(Long id, String vnDetailBean, int type) { this.id = id; this.vnDetailBean = vnDetailBean; this.type = type; } @Generated(hash = 1722448085) public NRCReportEntity() { } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getVnDetailBean() { return this.vnDetailBean; } public void setVnDetailBean(String vnDetailBean) { this.vnDetailBean = vnDetailBean; } public int getType() { return this.type; } public void setType(int type) { this.type = type; } }