package com.shlanbao.tzsc.pms.qm.check.beans;
|
|
import com.shlanbao.tzsc.base.model.BaseEntity;
|
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
|
|
public class QmExcheckAddBean extends BaseEntity {
|
|
private String id;//QM_ONLINECHECK表主键
|
|
private String matname;//产品
|
|
private String checkbatch;//检验批次
|
|
@DateFmtAnnotation(fmtPattern = "yyyy-MM-dd HH:mm:ss")
|
private String timestamp_;// 取样时间 yyyy-MM-dd HH:mm:ss
|
|
private String subBatchCode;//取样批次号
|
|
private Integer samplenum;//取样数
|
|
private String team;//班组编号
|
|
private String teanname;//班组名称
|
|
private String eqpuipmentname;//设备名称
|
|
private String qmexcheckaddid;//QM_CXCHECK_ADD表主键
|
|
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代表反馈
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getMatname() {
|
return matname;
|
}
|
|
public void setMatname(String matname) {
|
this.matname = matname;
|
}
|
|
public String getCheckbatch() {
|
return checkbatch;
|
}
|
|
public void setCheckbatch(String checkbatch) {
|
this.checkbatch = checkbatch;
|
}
|
|
public String getTimestamp_() {
|
return timestamp_;
|
}
|
|
public void setTimestamp_(String timestamp_) {
|
this.timestamp_ = timestamp_;
|
}
|
|
public String getSubBatchCode() {
|
return subBatchCode;
|
}
|
|
public void setSubBatchCode(String subBatchCode) {
|
this.subBatchCode = subBatchCode;
|
}
|
|
public Integer getSamplenum() {
|
return samplenum;
|
}
|
|
public void setSamplenum(Integer samplenum) {
|
this.samplenum = samplenum;
|
}
|
|
public String getTeam() {
|
return team;
|
}
|
|
public void setTeam(String team) {
|
this.team = team;
|
}
|
|
public String getTeanname() {
|
return teanname;
|
}
|
|
public void setTeanname(String teanname) {
|
this.teanname = teanname;
|
}
|
|
public String getEqpuipmentname() {
|
return eqpuipmentname;
|
}
|
|
public void setEqpuipmentname(String eqpuipmentname) {
|
this.eqpuipmentname = eqpuipmentname;
|
}
|
|
public String getQmexcheckaddid() {
|
return qmexcheckaddid;
|
}
|
|
public void setQmexcheckaddid(String qmexcheckaddid) {
|
this.qmexcheckaddid = qmexcheckaddid;
|
}
|
|
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;
|
}
|
|
}
|