feat 收入明细表:

1:附件改动
dev_1.0.0
chenhao 2024-10-30 10:47:17 +08:00
parent 6880f80a7c
commit e0704f47da
4 changed files with 20 additions and 0 deletions

View File

@ -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;
} }

View File

@ -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;
} }
} }

View File

@ -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;
} }

View File

@ -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;
} }
} }