dobe_comic8/main/java/shkd/repc/recos/domain/Calculation.java

123 lines
3.1 KiB
Java

package shkd.repc.recos.domain;
/*
* 成本测算附件信息对象
* */
public class Calculation {
//科目长编码
String entry_longnumber;
//科目名称
String entry_accountname;
//单位
String entry_workloadunit;
//调整系数
Double entry_adjustcoefficient;
//合价(含税)
Double entry_amount;
//单价
Double entry_price;
//工程量
Double entry_workload;
//估算口径
String entry_measureplanidx;
//备注
String entry_description;
public Calculation(String entry_longnumber, String entry_accountname, String entry_workloadunit, Double entry_adjustcoefficient, Double entry_amount,Double entry_price,Double entry_workload,String entry_measureplanidx,String entry_description) {
this.entry_longnumber = entry_longnumber;
this.entry_accountname = entry_accountname;
this.entry_workloadunit = entry_workloadunit;
this.entry_adjustcoefficient = entry_adjustcoefficient;
this.entry_amount = entry_amount;
this.entry_price = entry_price;
this.entry_workload = entry_workload;
this.entry_measureplanidx = entry_measureplanidx;
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 getEntry_workloadunit() {
return entry_workloadunit;
}
public void setEntry_workloadunit(String entry_workloadunit) {
this.entry_workloadunit = entry_workloadunit;
}
public Double getEntry_adjustcoefficient() {
return entry_adjustcoefficient;
}
public void setEntry_adjustcoefficient(Double entry_adjustcoefficient) {
this.entry_adjustcoefficient = entry_adjustcoefficient;
}
public Double getEntry_amount() {
return entry_amount;
}
public void setEntry_amount(Double entry_amount) {
this.entry_amount = entry_amount;
}
public Double getEntry_price() {
return entry_price;
}
public void setEntry_price(Double entry_price) {
this.entry_price = entry_price;
}
public Double getEntry_workload() {
return entry_workload;
}
public void setEntry_workload(Double entry_workload) {
this.entry_workload = entry_workload;
}
public String getEntry_measureplanidx() {
return entry_measureplanidx;
}
public void setEntry_measureplanidx(String entry_measureplanidx) {
this.entry_measureplanidx = entry_measureplanidx;
}
public String getEntry_description() {
return entry_description;
}
public void setEntry_description(String entry_description) {
this.entry_description = entry_description;
}
public Calculation() {
}
}