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; private boolean isWarning; @Generated(hash = 807432003) public NRCReportEntity(Long id, String vnDetailBean, int type, boolean isWarning) { this.id = id; this.vnDetailBean = vnDetailBean; this.type = type; this.isWarning = isWarning; } @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; } public boolean getIsWarning() { return this.isWarning; } public void setIsWarning(boolean isWarning) { this.isWarning = isWarning; } @Override public String toString() { return "NRCReportEntity{" + "id=" + id + ", vnDetailBean='" + vnDetailBean + '\'' + ", type=" + type + ", isWarning=" + isWarning + '}'; } }