parent
6880f80a7c
commit
e0704f47da
|
@ -28,6 +28,7 @@ public class ProjectBudgetCostDetailBase {
|
||||||
private int category;
|
private int category;
|
||||||
|
|
||||||
private String name;
|
private String name;
|
||||||
|
private String attr;
|
||||||
|
|
||||||
private String unit;
|
private String unit;
|
||||||
private BigDecimal amount;
|
private BigDecimal amount;
|
||||||
|
@ -59,6 +60,14 @@ public class ProjectBudgetCostDetailBase {
|
||||||
@Column(name = "remark")
|
@Column(name = "remark")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
|
public String getAttr() {
|
||||||
|
return attr;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAttr(String attr) {
|
||||||
|
this.attr = attr;
|
||||||
|
}
|
||||||
|
|
||||||
public Integer getId() {
|
public Integer getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,7 @@ public class ProjectBudgetCostDetailTemp extends ProjectBudgetCostDetailBase{
|
||||||
detail.setPayWay(getPayWay());
|
detail.setPayWay(getPayWay());
|
||||||
detail.setRemark(getRemark());
|
detail.setRemark(getRemark());
|
||||||
detail.setTotalTaxInclude(getTotalTaxInclude());
|
detail.setTotalTaxInclude(getTotalTaxInclude());
|
||||||
|
detail.setAttr(getAttr());
|
||||||
return detail;
|
return detail;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -39,6 +39,7 @@ public class ProjectBudgetIncomeDetailBase {
|
||||||
private String unit;
|
private String unit;
|
||||||
private BigDecimal amount;
|
private BigDecimal amount;
|
||||||
private BigDecimal price;
|
private BigDecimal price;
|
||||||
|
private String attr;
|
||||||
|
|
||||||
@Column(name = "tax_rate")
|
@Column(name = "tax_rate")
|
||||||
private BigDecimal taxRate;
|
private BigDecimal taxRate;
|
||||||
|
@ -47,6 +48,14 @@ public class ProjectBudgetIncomeDetailBase {
|
||||||
@Column(name = "expiration_date")
|
@Column(name = "expiration_date")
|
||||||
public String expirationDate;
|
public String expirationDate;
|
||||||
|
|
||||||
|
public String getAttr() {
|
||||||
|
return attr;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAttr(String attr) {
|
||||||
|
this.attr = attr;
|
||||||
|
}
|
||||||
|
|
||||||
public Integer getId() {
|
public Integer getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,7 @@ public class ProjectBudgetIncomeDetailTemp extends ProjectBudgetIncomeDetailBase
|
||||||
projectBudgetIncomeDetail.setPrice(getPrice());
|
projectBudgetIncomeDetail.setPrice(getPrice());
|
||||||
projectBudgetIncomeDetail.setTaxRate(getTaxRate());
|
projectBudgetIncomeDetail.setTaxRate(getTaxRate());
|
||||||
projectBudgetIncomeDetail.setTotalTaxInclude(getTotalTaxInclude());
|
projectBudgetIncomeDetail.setTotalTaxInclude(getTotalTaxInclude());
|
||||||
|
projectBudgetIncomeDetail.setAttr(getAttr());
|
||||||
return projectBudgetIncomeDetail;
|
return projectBudgetIncomeDetail;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue