|
|
@@ -1,112 +1,114 @@
|
|
|
-package com.goafanti.order.bo;
|
|
|
-
|
|
|
-public class TOrderInvoiceBo {
|
|
|
- private Integer id;
|
|
|
- private String unitName;
|
|
|
- private String orderno;
|
|
|
- private String contractNo;
|
|
|
- private String name;
|
|
|
- private Integer projectStatus;
|
|
|
- private Integer processStatus;
|
|
|
- private String sumAmount;
|
|
|
- private String amount;
|
|
|
- private String createTime;
|
|
|
- private Integer status;
|
|
|
- private String notAmount;
|
|
|
- private String settlementAmount;
|
|
|
- private String rejectReason;
|
|
|
- private Integer approval;
|
|
|
- public Integer getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
- public void setId(Integer id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
- public String getUnitName() {
|
|
|
- return unitName;
|
|
|
- }
|
|
|
- public void setUnitName(String unitName) {
|
|
|
- this.unitName = unitName;
|
|
|
- }
|
|
|
- public String getOrderno() {
|
|
|
- return orderno;
|
|
|
- }
|
|
|
- public void setOrderno(String orderno) {
|
|
|
- this.orderno = orderno;
|
|
|
- }
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
- }
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
- public Integer getProjectStatus() {
|
|
|
- return projectStatus;
|
|
|
- }
|
|
|
- public void setProjectStatus(Integer projectStatus) {
|
|
|
- this.projectStatus = projectStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
- public void setCreateTime(String createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
- public String getAmount() {
|
|
|
- return amount;
|
|
|
- }
|
|
|
- public void setAmount(String amount) {
|
|
|
- this.amount = amount;
|
|
|
- }
|
|
|
- public String getSumAmount() {
|
|
|
- return sumAmount;
|
|
|
- }
|
|
|
- public void setSumAmount(String sumAmount) {
|
|
|
- this.sumAmount = sumAmount;
|
|
|
- }
|
|
|
- public Integer getStatus() {
|
|
|
- return status;
|
|
|
- }
|
|
|
- public void setStatus(Integer status) {
|
|
|
- this.status = status;
|
|
|
- }
|
|
|
- public String getNotAmount() {
|
|
|
- return notAmount;
|
|
|
- }
|
|
|
- public void setNotAmount(String notAmount) {
|
|
|
- this.notAmount = notAmount;
|
|
|
- }
|
|
|
- public String getSettlementAmount() {
|
|
|
- return settlementAmount;
|
|
|
- }
|
|
|
- public void setSettlementAmount(String settlementAmount) {
|
|
|
- this.settlementAmount = settlementAmount;
|
|
|
- }
|
|
|
- public String getRejectReason() {
|
|
|
- return rejectReason;
|
|
|
- }
|
|
|
- public void setRejectReason(String rejectReason) {
|
|
|
- this.rejectReason = rejectReason;
|
|
|
- }
|
|
|
- public Integer getApproval() {
|
|
|
- return approval;
|
|
|
- }
|
|
|
- public void setApproval(Integer approval) {
|
|
|
- this.approval = approval;
|
|
|
- }
|
|
|
- public Integer getProcessStatus() {
|
|
|
- return processStatus;
|
|
|
- }
|
|
|
- public void setProcessStatus(Integer processStatus) {
|
|
|
- this.processStatus = processStatus;
|
|
|
- }
|
|
|
- public String getContractNo() {
|
|
|
- return contractNo;
|
|
|
- }
|
|
|
- public void setContractNo(String contractNo) {
|
|
|
- this.contractNo = contractNo;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-}
|
|
|
+package com.goafanti.order.bo;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+public class TOrderInvoiceBo {
|
|
|
+ private Integer id;
|
|
|
+ private String unitName;
|
|
|
+ private String orderno;
|
|
|
+ private String contractNo;
|
|
|
+ private String name;
|
|
|
+ private Integer projectStatus;
|
|
|
+ private Integer processStatus;
|
|
|
+ private BigDecimal sumAmount;
|
|
|
+ private BigDecimal amount;
|
|
|
+ private String createTime;
|
|
|
+ private Integer status;
|
|
|
+ private BigDecimal notAmount;
|
|
|
+ private BigDecimal settlementAmount;
|
|
|
+ private String rejectReason;
|
|
|
+ private Integer approval;
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+ public void setId(Integer id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+ public String getUnitName() {
|
|
|
+ return unitName;
|
|
|
+ }
|
|
|
+ public void setUnitName(String unitName) {
|
|
|
+ this.unitName = unitName;
|
|
|
+ }
|
|
|
+ public String getOrderno() {
|
|
|
+ return orderno;
|
|
|
+ }
|
|
|
+ public void setOrderno(String orderno) {
|
|
|
+ this.orderno = orderno;
|
|
|
+ }
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+ public Integer getProjectStatus() {
|
|
|
+ return projectStatus;
|
|
|
+ }
|
|
|
+ public void setProjectStatus(Integer projectStatus) {
|
|
|
+ this.projectStatus = projectStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+ public void setCreateTime(String createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+ public BigDecimal getAmount() {
|
|
|
+ return amount;
|
|
|
+ }
|
|
|
+ public void setAmount(BigDecimal amount) {
|
|
|
+ this.amount = amount;
|
|
|
+ }
|
|
|
+ public BigDecimal getSumAmount() {
|
|
|
+ return sumAmount;
|
|
|
+ }
|
|
|
+ public void setSumAmount(BigDecimal sumAmount) {
|
|
|
+ this.sumAmount = sumAmount;
|
|
|
+ }
|
|
|
+ public Integer getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+ public void setStatus(Integer status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+ public BigDecimal getNotAmount() {
|
|
|
+ return notAmount;
|
|
|
+ }
|
|
|
+ public void setNotAmount(BigDecimal notAmount) {
|
|
|
+ this.notAmount = notAmount;
|
|
|
+ }
|
|
|
+ public BigDecimal getSettlementAmount() {
|
|
|
+ return settlementAmount;
|
|
|
+ }
|
|
|
+ public void setSettlementAmount(BigDecimal settlementAmount) {
|
|
|
+ this.settlementAmount = settlementAmount;
|
|
|
+ }
|
|
|
+ public String getRejectReason() {
|
|
|
+ return rejectReason;
|
|
|
+ }
|
|
|
+ public void setRejectReason(String rejectReason) {
|
|
|
+ this.rejectReason = rejectReason;
|
|
|
+ }
|
|
|
+ public Integer getApproval() {
|
|
|
+ return approval;
|
|
|
+ }
|
|
|
+ public void setApproval(Integer approval) {
|
|
|
+ this.approval = approval;
|
|
|
+ }
|
|
|
+ public Integer getProcessStatus() {
|
|
|
+ return processStatus;
|
|
|
+ }
|
|
|
+ public void setProcessStatus(Integer processStatus) {
|
|
|
+ this.processStatus = processStatus;
|
|
|
+ }
|
|
|
+ public String getContractNo() {
|
|
|
+ return contractNo;
|
|
|
+ }
|
|
|
+ public void setContractNo(String contractNo) {
|
|
|
+ this.contractNo = contractNo;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|