package com.shlanbao.tzsc.base.mapping;
|
|
import java.util.Date;
|
|
/**
|
* sd标准值
|
*/
|
public class QmStd {
|
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 MdMat mdMat;
|
private Date effedate;//生效日期
|
|
public Date getEffedate() {
|
return effedate;
|
}
|
|
public void setEffedate(Date 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 MdMat getMdMat() {
|
return mdMat;
|
}
|
|
public void setMdMat(MdMat mdMat) {
|
this.mdMat = mdMat;
|
}
|
}
|