|
|
@@ -1,9 +1,37 @@
|
|
|
package com.goafanti.expenseAccount.bo;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
public class ExpenseCountsBo {
|
|
|
|
|
|
- private String orderNo , contractNo , buyerName ,expenseCount,peopleCount,notExamine,rejectCount,paymentAmount,days;
|
|
|
+ private String orderNo;
|
|
|
+ private String contractNo;
|
|
|
+ private String buyerName;
|
|
|
+ private BigDecimal totalAmount;
|
|
|
+ private BigDecimal settlementAmount;
|
|
|
+ private Integer expenseCount;
|
|
|
+ private Integer peopleCount;
|
|
|
+ private Integer rejectCount;
|
|
|
+ private BigDecimal paymentAmount;
|
|
|
+
|
|
|
+ private Integer notExamine;
|
|
|
+ private Integer days;
|
|
|
+
|
|
|
+ public BigDecimal getTotalAmount() {
|
|
|
+ return totalAmount;
|
|
|
+ }
|
|
|
|
|
|
+ public void setTotalAmount(BigDecimal totalAmount) {
|
|
|
+ this.totalAmount = totalAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getSettlementAmount() {
|
|
|
+ return settlementAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSettlementAmount(BigDecimal settlementAmount) {
|
|
|
+ this.settlementAmount = settlementAmount;
|
|
|
+ }
|
|
|
|
|
|
public String getOrderNo() {
|
|
|
return orderNo;
|
|
|
@@ -29,51 +57,51 @@ public class ExpenseCountsBo {
|
|
|
this.buyerName = buyerName;
|
|
|
}
|
|
|
|
|
|
- public String getExpenseCount() {
|
|
|
+ public Integer getExpenseCount() {
|
|
|
return expenseCount;
|
|
|
}
|
|
|
|
|
|
- public void setExpenseCount(String expenseCount) {
|
|
|
+ public void setExpenseCount(Integer expenseCount) {
|
|
|
this.expenseCount = expenseCount;
|
|
|
}
|
|
|
|
|
|
- public String getPeopleCount() {
|
|
|
+ public Integer getPeopleCount() {
|
|
|
return peopleCount;
|
|
|
}
|
|
|
|
|
|
- public void setPeopleCount(String peopleCount) {
|
|
|
+ public void setPeopleCount(Integer peopleCount) {
|
|
|
this.peopleCount = peopleCount;
|
|
|
}
|
|
|
|
|
|
- public String getNotExamine() {
|
|
|
- return notExamine;
|
|
|
- }
|
|
|
-
|
|
|
- public void setNotExamine(String notExamine) {
|
|
|
- this.notExamine = notExamine;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRejectCount() {
|
|
|
+ public Integer getRejectCount() {
|
|
|
return rejectCount;
|
|
|
}
|
|
|
|
|
|
- public void setRejectCount(String rejectCount) {
|
|
|
+ public void setRejectCount(Integer rejectCount) {
|
|
|
this.rejectCount = rejectCount;
|
|
|
}
|
|
|
|
|
|
- public String getPaymentAmount() {
|
|
|
+ public BigDecimal getPaymentAmount() {
|
|
|
return paymentAmount;
|
|
|
}
|
|
|
|
|
|
- public void setPaymentAmount(String paymentAmount) {
|
|
|
+ public void setPaymentAmount(BigDecimal paymentAmount) {
|
|
|
this.paymentAmount = paymentAmount;
|
|
|
}
|
|
|
|
|
|
- public String getDays() {
|
|
|
+ public Integer getNotExamine() {
|
|
|
+ return notExamine;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNotExamine(Integer notExamine) {
|
|
|
+ this.notExamine = notExamine;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getDays() {
|
|
|
return days;
|
|
|
}
|
|
|
|
|
|
- public void setDays(String days) {
|
|
|
+ public void setDays(Integer days) {
|
|
|
this.days = days;
|
|
|
}
|
|
|
}
|