package com.shlanbao.tzsc.base.mapping; import com.shlanbao.tzsc.base.model.BaseEntity; import java.io.Serializable; import java.util.Date; public class QmExcheckAdd extends BaseEntity implements Serializable { private String id;//表主键 private String qmocid;//外键QM_ONLINE_CHECK表id private double wat;//含水率 private double gy1;//甘油1 private double gy2;//甘油2 private String type;//类型 private String remark;//备注 private String del;//删除标志 private String res;// private String res2;// private String status;//反馈标志,0代表未反馈,1代表反馈 private Date chkDate; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getQmocid() { return qmocid; } public void setQmocid(String qmocid) { this.qmocid = qmocid; } public double getWat() { return wat; } public void setWat(double wat) { this.wat = wat; } public double getGy1() { return gy1; } public void setGy1(double gy1) { this.gy1 = gy1; } public double getGy2() { return gy2; } public void setGy2(double gy2) { this.gy2 = gy2; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public String getDel() { return del; } public void setDel(String del) { this.del = del; } public String getRes() { return res; } public void setRes(String res) { this.res = res; } public String getRes2() { return res2; } public void setRes2(String res2) { this.res2 = res2; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public QmExcheckAdd() {} public QmExcheckAdd(String id, String qmocid, double wat, double gy1, double gy2, String type, String remark, String del, String res, String res2,String status) { this.id = id; this.qmocid = qmocid; this.wat = wat; this.gy1 = gy1; this.gy2 = gy2; this.type = type; this.remark = remark; this.del = del; this.res = res; this.res2 = res2; this.status = status; } public Date getChkDate() { return chkDate; } public void setChkDate(Date chkDate) { this.chkDate = chkDate; } }