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