2024-11-06 09:39:26 +00:00
|
|
|
package shkd.repc.recos.domain;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 成本测算附件信息对象
|
|
|
|
* */
|
|
|
|
public class Calculation {
|
|
|
|
|
|
|
|
//科目长编码
|
|
|
|
String entry_longnumber;
|
|
|
|
|
|
|
|
//科目名称
|
|
|
|
String entry_accountname;
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
//财务预算分类
|
|
|
|
String qeug_cwysfl;
|
|
|
|
|
|
|
|
//估算口径
|
|
|
|
String entry_measureplanidx;
|
|
|
|
|
2024-11-06 09:39:26 +00:00
|
|
|
//单位
|
|
|
|
String entry_workloadunit;
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
//工程量基数
|
|
|
|
Double qeug_gcljs;
|
|
|
|
|
|
|
|
//工程量调整值
|
|
|
|
Double qeug_gcltzz;
|
|
|
|
|
2024-11-06 09:39:26 +00:00
|
|
|
//调整系数
|
|
|
|
Double entry_adjustcoefficient;
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
//工程量
|
|
|
|
Double entry_workload;
|
|
|
|
|
|
|
|
//单价基数
|
|
|
|
Double qeug_djjs;
|
|
|
|
|
|
|
|
//单价调整值
|
|
|
|
Double qeug_djtzz;
|
2024-11-06 09:39:26 +00:00
|
|
|
|
2024-11-11 01:34:55 +00:00
|
|
|
//单价
|
|
|
|
Double entry_price;
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
//合价(含税)
|
|
|
|
Double entry_amount;
|
2024-11-11 01:34:55 +00:00
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
//明细
|
|
|
|
String qeug_mx;
|
2024-11-11 01:34:55 +00:00
|
|
|
|
2024-11-19 10:04:56 +00:00
|
|
|
//备注
|
|
|
|
String entry_description;
|
2024-11-11 01:34:55 +00:00
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
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) {
|
2024-11-06 09:39:26 +00:00
|
|
|
this.entry_longnumber = entry_longnumber;
|
|
|
|
this.entry_accountname = entry_accountname;
|
2024-12-11 10:05:16 +00:00
|
|
|
this.qeug_cwysfl = qeug_cwysfl;
|
|
|
|
this.entry_measureplanidx = entry_measureplanidx;
|
2024-11-06 09:39:26 +00:00
|
|
|
this.entry_workloadunit = entry_workloadunit;
|
2024-12-11 10:05:16 +00:00
|
|
|
this.qeug_gcljs = qeug_gcljs;
|
|
|
|
this.qeug_gcltzz = qeug_gcltzz;
|
2024-11-06 09:39:26 +00:00
|
|
|
this.entry_adjustcoefficient = entry_adjustcoefficient;
|
2024-11-11 01:34:55 +00:00
|
|
|
this.entry_workload = entry_workload;
|
2024-12-11 10:05:16 +00:00
|
|
|
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;
|
2024-11-19 10:04:56 +00:00
|
|
|
this.entry_description = entry_description;
|
2024-11-06 09:39:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2024-11-06 09:39:26 +00:00
|
|
|
public String getEntry_workloadunit() {
|
|
|
|
return entry_workloadunit;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEntry_workloadunit(String entry_workloadunit) {
|
|
|
|
this.entry_workloadunit = entry_workloadunit;
|
|
|
|
}
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2024-11-06 09:39:26 +00:00
|
|
|
public Double getEntry_adjustcoefficient() {
|
|
|
|
return entry_adjustcoefficient;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEntry_adjustcoefficient(Double entry_adjustcoefficient) {
|
|
|
|
this.entry_adjustcoefficient = entry_adjustcoefficient;
|
|
|
|
}
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
public Double getEntry_workload() {
|
|
|
|
return entry_workload;
|
2024-11-06 09:39:26 +00:00
|
|
|
}
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
public void setEntry_workload(Double entry_workload) {
|
|
|
|
this.entry_workload = entry_workload;
|
2024-11-06 09:39:26 +00:00
|
|
|
}
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
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;
|
|
|
|
}
|
2024-11-11 01:34:55 +00:00
|
|
|
|
|
|
|
public Double getEntry_price() {
|
|
|
|
return entry_price;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEntry_price(Double entry_price) {
|
|
|
|
this.entry_price = entry_price;
|
|
|
|
}
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
public Double getEntry_amount() {
|
|
|
|
return entry_amount;
|
2024-11-11 01:34:55 +00:00
|
|
|
}
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
public void setEntry_amount(Double entry_amount) {
|
|
|
|
this.entry_amount = entry_amount;
|
2024-11-11 01:34:55 +00:00
|
|
|
}
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
public String getQeug_mx() {
|
|
|
|
return qeug_mx;
|
2024-11-19 10:04:56 +00:00
|
|
|
}
|
|
|
|
|
2024-12-11 10:05:16 +00:00
|
|
|
public void setQeug_mx(String qeug_mx) {
|
|
|
|
this.qeug_mx = qeug_mx;
|
2024-11-19 10:04:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getEntry_description() {
|
|
|
|
return entry_description;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEntry_description(String entry_description) {
|
|
|
|
this.entry_description = entry_description;
|
|
|
|
}
|
|
|
|
|
2024-11-06 09:39:26 +00:00
|
|
|
public Calculation() {
|
|
|
|
}
|
|
|
|
}
|