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