package shkd.repc.recos.domain; /* * 成本测算附件信息对象 * */ public class Calculation { //科目长编码 String entry_longnumber; //科目名称 String entry_accountname; //财务预算分类 String qeug_cwysfl; //估算口径 String entry_measureplanidx; //单位 String entry_workloadunit; //工程量基数 Double qeug_gcljs; //工程量调整值 Double qeug_gcltzz; //调整系数 Double entry_adjustcoefficient; //工程量 Double entry_workload; //单价基数 Double qeug_djjs; //单价调整值 Double qeug_djtzz; //单价 Double entry_price; //合价(含税) Double entry_amount; //明细 String qeug_mx; //备注 String entry_description; public Calculation(String entry_longnumber, String entry_accountname, String qeug_cwysfl, String entry_measureplanidx, String entry_workloadunit, Double qeug_gcljs, Double qeug_gcltzz, Double entry_adjustcoefficient, Double entry_workload, Double qeug_djjs, Double qeug_djtzz, Double entry_price, Double entry_amount, String qeug_mx, String entry_description) { this.entry_longnumber = entry_longnumber; this.entry_accountname = entry_accountname; this.qeug_cwysfl = qeug_cwysfl; this.entry_measureplanidx = entry_measureplanidx; this.entry_workloadunit = entry_workloadunit; this.qeug_gcljs = qeug_gcljs; this.qeug_gcltzz = qeug_gcltzz; this.entry_adjustcoefficient = entry_adjustcoefficient; this.entry_workload = entry_workload; this.qeug_djjs = qeug_djjs; this.qeug_djtzz = qeug_djtzz; this.entry_price = entry_price; this.entry_amount = entry_amount; this.qeug_mx = qeug_mx; this.entry_description = entry_description; } public String getEntry_longnumber() { return entry_longnumber; } public void setEntry_longnumber(String entry_longnumber) { this.entry_longnumber = entry_longnumber; } public String getEntry_accountname() { return entry_accountname; } public void setEntry_accountname(String entry_accountname) { this.entry_accountname = entry_accountname; } public String getQeug_cwysfl() { return qeug_cwysfl; } public void setQeug_cwysfl(String qeug_cwysfl) { this.qeug_cwysfl = qeug_cwysfl; } public String getEntry_measureplanidx() { return entry_measureplanidx; } public void setEntry_measureplanidx(String entry_measureplanidx) { this.entry_measureplanidx = entry_measureplanidx; } public String getEntry_workloadunit() { return entry_workloadunit; } public void setEntry_workloadunit(String entry_workloadunit) { this.entry_workloadunit = entry_workloadunit; } public Double getQeug_gcljs() { return qeug_gcljs; } public void setQeug_gcljs(Double qeug_gcljs) { this.qeug_gcljs = qeug_gcljs; } public Double getQeug_gcltzz() { return qeug_gcltzz; } public void setQeug_gcltzz(Double qeug_gcltzz) { this.qeug_gcltzz = qeug_gcltzz; } public Double getEntry_adjustcoefficient() { return entry_adjustcoefficient; } public void setEntry_adjustcoefficient(Double entry_adjustcoefficient) { this.entry_adjustcoefficient = entry_adjustcoefficient; } public Double getEntry_workload() { return entry_workload; } public void setEntry_workload(Double entry_workload) { this.entry_workload = entry_workload; } public Double getQeug_djjs() { return qeug_djjs; } public void setQeug_djjs(Double qeug_djjs) { this.qeug_djjs = qeug_djjs; } public Double getQeug_djtzz() { return qeug_djtzz; } public void setQeug_djtzz(Double qeug_djtzz) { this.qeug_djtzz = qeug_djtzz; } public Double getEntry_price() { return entry_price; } public void setEntry_price(Double entry_price) { this.entry_price = entry_price; } public Double getEntry_amount() { return entry_amount; } public void setEntry_amount(Double entry_amount) { this.entry_amount = entry_amount; } public String getQeug_mx() { return qeug_mx; } public void setQeug_mx(String qeug_mx) { this.qeug_mx = qeug_mx; } public String getEntry_description() { return entry_description; } public void setEntry_description(String entry_description) { this.entry_description = entry_description; } public Calculation() { } }