package com.shlanbao.tzsc.pms.qm.qmsd.bean;
|
|
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
|
|
/**
|
* sd标准值
|
*/
|
public class QmStdBean {
|
private String id;
|
private String matname;
|
private Float weightstd;
|
private Float cirsd;
|
private Float roundsd;
|
private Float lensd;
|
private Float xzsd;
|
private Float ventsd;
|
private Float hdsd;
|
private String matid;
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
|
private String effedate;//生效日期
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
|
private String stim;
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
|
private String etim;
|
|
public String getStim() {
|
return stim;
|
}
|
|
public void setStim(String stim) {
|
this.stim = stim;
|
}
|
|
public String getEtim() {
|
return etim;
|
}
|
|
public void setEtim(String etim) {
|
this.etim = etim;
|
}
|
|
public String getEffedate() {
|
return effedate;
|
}
|
|
public void setEffedate(String effedate) {
|
this.effedate = effedate;
|
}
|
|
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 Float getWeightstd() {
|
return weightstd;
|
}
|
|
public void setWeightstd(Float weightstd) {
|
this.weightstd = weightstd;
|
}
|
|
public Float getCirsd() {
|
return cirsd;
|
}
|
|
public void setCirsd(Float cirsd) {
|
this.cirsd = cirsd;
|
}
|
|
public Float getRoundsd() {
|
return roundsd;
|
}
|
|
public void setRoundsd(Float roundsd) {
|
this.roundsd = roundsd;
|
}
|
|
public Float getLensd() {
|
return lensd;
|
}
|
|
public void setLensd(Float lensd) {
|
this.lensd = lensd;
|
}
|
|
public Float getXzsd() {
|
return xzsd;
|
}
|
|
public void setXzsd(Float xzsd) {
|
this.xzsd = xzsd;
|
}
|
|
public Float getVentsd() {
|
return ventsd;
|
}
|
|
public void setVentsd(Float ventsd) {
|
this.ventsd = ventsd;
|
}
|
|
public Float getHdsd() {
|
return hdsd;
|
}
|
|
public void setHdsd(Float hdsd) {
|
this.hdsd = hdsd;
|
}
|
|
public String getMatid() {
|
return matid;
|
}
|
|
public void setMatid(String matid) {
|
this.matid = matid;
|
}
|
|
@Override
|
public String toString() {
|
return "QmStdBean{" +
|
"id='" + id + '\'' +
|
", matname='" + matname + '\'' +
|
", weightstd=" + weightstd +
|
", cirsd=" + cirsd +
|
", roundsd=" + roundsd +
|
", lensd=" + lensd +
|
", xzsd=" + xzsd +
|
", ventsd=" + ventsd +
|
", hdsd=" + hdsd +
|
", matid='" + matid + '\'' +
|
", effedate='" + effedate + '\'' +
|
'}';
|
}
|
}
|