package com.shlanbao.tzsc.base.mapping;
|
|
|
import com.shlanbao.tzsc.base.model.BaseEntity;
|
|
/**
|
* SchStatInput entity. @author MyEclipse Persistence Tools
|
*/
|
|
public class SchStatInputFb extends BaseEntity implements java.io.Serializable {
|
|
|
// Fields
|
|
private String id;
|
private MdUnit mdUnit;
|
private SchStatOutputFb schStatOutputFb;
|
private MdMat mdMat;
|
private Double orignalData;
|
private Double qty;
|
|
|
// Constructors
|
|
/** default constructor */
|
public SchStatInputFb() {
|
}
|
|
|
/** full constructor */
|
public SchStatInputFb(MdUnit mdUnit, SchStatOutputFb schStatOutputFb, MdMat mdMat, Double orignalData, Double qty) {
|
this.mdUnit = mdUnit;
|
this.schStatOutputFb = schStatOutputFb;
|
this.mdMat = mdMat;
|
this.orignalData = orignalData;
|
this.qty = qty;
|
}
|
|
|
// Property accessors
|
|
public String getId() {
|
return this.id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public MdUnit getMdUnit() {
|
return this.mdUnit;
|
}
|
|
public void setMdUnit(MdUnit mdUnit) {
|
this.mdUnit = mdUnit;
|
}
|
|
public SchStatOutputFb getSchStatOutputFb() {
|
return schStatOutputFb;
|
}
|
|
public void setSchStatOutputFb(SchStatOutputFb schStatOutputFb) {
|
this.schStatOutputFb = schStatOutputFb;
|
}
|
|
public MdMat getMdMat() {
|
return this.mdMat;
|
}
|
|
public void setMdMat(MdMat mdMat) {
|
this.mdMat = mdMat;
|
}
|
|
public Double getOrignalData() {
|
return this.orignalData;
|
}
|
|
public void setOrignalData(Double orignalData) {
|
this.orignalData = orignalData;
|
}
|
|
public Double getQty() {
|
return this.qty;
|
}
|
|
public void setQty(Double qty) {
|
this.qty = qty;
|
}
|
|
|
|
|
|
|
|
|
|
}
|