| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- 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 +
- '}';
- }
- }
|