| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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 String inoculator;//受种者邮箱信息
- private int type;
- private boolean isWarning;
- @Generated(hash = 1283745167)
- public NRCReportEntity(Long id, String vnDetailBean, String inoculator,
- int type, boolean isWarning) {
- this.id = id;
- this.vnDetailBean = vnDetailBean;
- this.inoculator = inoculator;
- 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 String getInoculator() {
- return this.inoculator;
- }
- public void setInoculator(String inoculator) {
- this.inoculator = inoculator;
- }
- 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;
- }
-
- }
|