Browse Source

财务列表新增相关字段

anderx 3 years ago
parent
commit
4857958891
1 changed files with 81 additions and 0 deletions
  1. 81 0
      src/main/java/com/goafanti/order/bo/OrderListBo.java

+ 81 - 0
src/main/java/com/goafanti/order/bo/OrderListBo.java

@@ -181,6 +181,87 @@ public class OrderListBo {
 	@Excel(name="销售说明")
 	private String other;
 
+
+	public BigDecimal getPatentCost() {
+		return patentCost;
+	}
+
+	public void setPatentCost(BigDecimal patentCost) {
+		this.patentCost = patentCost;
+	}
+
+	public BigDecimal getPatentCostActual() {
+		return patentCostActual;
+	}
+
+	public void setPatentCostActual(BigDecimal patentCostActual) {
+		this.patentCostActual = patentCostActual;
+	}
+
+	public BigDecimal getSoftCost() {
+		return softCost;
+	}
+
+	public void setSoftCost(BigDecimal softCost) {
+		this.softCost = softCost;
+	}
+
+	public BigDecimal getSoftCostActual() {
+		return softCostActual;
+	}
+
+	public void setSoftCostActual(BigDecimal softCostActual) {
+		this.softCostActual = softCostActual;
+	}
+
+	public BigDecimal getAuditCost() {
+		return auditCost;
+	}
+
+	public void setAuditCost(BigDecimal auditCost) {
+		this.auditCost = auditCost;
+	}
+
+	public BigDecimal getAuditCostActual() {
+		return auditCostActual;
+	}
+
+	public void setAuditCostActual(BigDecimal auditCostActual) {
+		this.auditCostActual = auditCostActual;
+	}
+
+	public BigDecimal getOtherCost() {
+		return otherCost;
+	}
+
+	public void setOtherCost(BigDecimal otherCost) {
+		this.otherCost = otherCost;
+	}
+
+	public BigDecimal getOtherCostActual() {
+		return otherCostActual;
+	}
+
+	public void setOtherCostActual(BigDecimal otherCostActual) {
+		this.otherCostActual = otherCostActual;
+	}
+
+	public BigDecimal getExpectProfit() {
+		return expectProfit;
+	}
+
+	public void setExpectProfit(BigDecimal expectProfit) {
+		this.expectProfit = expectProfit;
+	}
+
+	public BigDecimal getActualProfit() {
+		return actualProfit;
+	}
+
+	public void setActualProfit(BigDecimal actualProfit) {
+		this.actualProfit = actualProfit;
+	}
+
 	public String getDeps() {
 		return deps;
 	}