74 lines
1.8 KiB
Java
74 lines
1.8 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;
|
||
|
|
||
|
public Calculation(String entry_longnumber, String entry_accountname, String entry_workloadunit, Double entry_adjustcoefficient, Double entry_amount) {
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
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 Calculation() {
|
||
|
}
|
||
|
}
|