package cn.flightfeather.thirdapp.bean.entity; import org.greenrobot.greendao.annotation.Entity; import org.greenrobot.greendao.annotation.Id; import org.greenrobot.greendao.annotation.Property; import org.greenrobot.greendao.annotation.Generated; /** * Created by note_ff_1602 on 2017/12/26. */ @Entity public class Monitorobjectversion implements Cloneable{ @Id private String movid; @Property private String tid; @Property private String sguid; @Property private String sensename; @Property private Byte tasktypeid; @Property private String tasktype; @Property private Integer monitornum; @Property private Boolean suitable; @Property private Integer displayid; @Property private Integer year; @Property private Integer month; @Property private Integer day; @Property private Boolean iscp; @Property private String customperiod; @Property private String extension1; @Property private String extension2; @Property private String extension3; @Property private String remark; @Generated(hash = 61430095) public Monitorobjectversion(String movid, String tid, String sguid, String sensename, Byte tasktypeid, String tasktype, Integer monitornum, Boolean suitable, Integer displayid, Integer year, Integer month, Integer day, Boolean iscp, String customperiod, String extension1, String extension2, String extension3, String remark) { this.movid = movid; this.tid = tid; this.sguid = sguid; this.sensename = sensename; this.tasktypeid = tasktypeid; this.tasktype = tasktype; this.monitornum = monitornum; this.suitable = suitable; this.displayid = displayid; this.year = year; this.month = month; this.day = day; this.iscp = iscp; this.customperiod = customperiod; this.extension1 = extension1; this.extension2 = extension2; this.extension3 = extension3; this.remark = remark; } @Generated(hash = 901838403) public Monitorobjectversion() { } public String getMovid() { return this.movid; } public void setMovid(String movid) { this.movid = movid; } public String getTid() { return this.tid; } public void setTid(String tid) { this.tid = tid; } public String getSguid() { return this.sguid; } public void setSguid(String sguid) { this.sguid = sguid; } public String getSensename() { return this.sensename; } public void setSensename(String sensename) { this.sensename = sensename; } public Byte getTasktypeid() { return this.tasktypeid; } public void setTasktypeid(Byte tasktypeid) { this.tasktypeid = tasktypeid; } public String getTasktype() { return this.tasktype; } public void setTasktype(String tasktype) { this.tasktype = tasktype; } public Integer getMonitornum() { return this.monitornum; } public void setMonitornum(Integer monitornum) { this.monitornum = monitornum; } public Boolean getSuitable() { return this.suitable; } public void setSuitable(Boolean suitable) { this.suitable = suitable; } public Integer getDisplayid() { return this.displayid; } public void setDisplayid(Integer displayid) { this.displayid = displayid; } public Integer getYear() { return this.year; } public void setYear(Integer year) { this.year = year; } public Integer getMonth() { return this.month; } public void setMonth(Integer month) { this.month = month; } public Integer getDay() { return this.day; } public void setDay(Integer day) { this.day = day; } public Boolean getIscp() { return this.iscp; } public void setIscp(Boolean iscp) { this.iscp = iscp; } public String getCustomperiod() { return this.customperiod; } public void setCustomperiod(String customperiod) { this.customperiod = customperiod; } public String getExtension1() { return this.extension1; } public void setExtension1(String extension1) { this.extension1 = extension1; } public String getExtension2() { return this.extension2; } public void setExtension2(String extension2) { this.extension2 = extension2; } public String getExtension3() { return this.extension3; } public void setExtension3(String extension3) { this.extension3 = extension3; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public Monitorobjectversion copy() { try { return (Monitorobjectversion) this.clone(); } catch (CloneNotSupportedException e) { e.printStackTrace(); } return new Monitorobjectversion(); } }