|
@@ -1,9 +1,11 @@
|
|
package com.ym.mec.biz.dal.entity;
|
|
package com.ym.mec.biz.dal.entity;
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
+import lombok.Data;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
|
|
+@Data
|
|
public class OperatingReportNew {
|
|
public class OperatingReportNew {
|
|
|
|
|
|
private Integer id;
|
|
private Integer id;
|
|
@@ -46,6 +48,10 @@ public class OperatingReportNew {
|
|
@ApiModelProperty(value="销售成本")
|
|
@ApiModelProperty(value="销售成本")
|
|
private BigDecimal saleCost = BigDecimal.ZERO;
|
|
private BigDecimal saleCost = BigDecimal.ZERO;
|
|
|
|
|
|
|
|
+ //学员管理费
|
|
|
|
+ @ApiModelProperty(value="学员管理费")
|
|
|
|
+ private BigDecimal studentManagementFee = BigDecimal.ZERO;
|
|
|
|
+
|
|
//OA审批固定费用总和
|
|
//OA审批固定费用总和
|
|
@ApiModelProperty(value="固定费用")
|
|
@ApiModelProperty(value="固定费用")
|
|
private BigDecimal fixedCosts = BigDecimal.ZERO;
|
|
private BigDecimal fixedCosts = BigDecimal.ZERO;
|
|
@@ -94,212 +100,4 @@ public class OperatingReportNew {
|
|
|
|
|
|
@ApiModelProperty(value="月份")
|
|
@ApiModelProperty(value="月份")
|
|
private String month;
|
|
private String month;
|
|
-
|
|
|
|
- public BigDecimal getMaintenanceAmount() {
|
|
|
|
- return maintenanceAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setMaintenanceAmount(BigDecimal maintenanceAmount) {
|
|
|
|
- this.maintenanceAmount = maintenanceAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getCloudPrepaidFee() {
|
|
|
|
- return cloudPrepaidFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCloudPrepaidFee(BigDecimal cloudPrepaidFee) {
|
|
|
|
- this.cloudPrepaidFee = cloudPrepaidFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getCoursePrepaidFee() {
|
|
|
|
- return coursePrepaidFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCoursePrepaidFee(BigDecimal coursePrepaidFee) {
|
|
|
|
- this.coursePrepaidFee = coursePrepaidFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getSalePrepaidFee() {
|
|
|
|
- return salePrepaidFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSalePrepaidFee(BigDecimal salePrepaidFee) {
|
|
|
|
- this.salePrepaidFee = salePrepaidFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getOtherPrepaidFee() {
|
|
|
|
- return otherPrepaidFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOtherPrepaidFee(BigDecimal otherPrepaidFee) {
|
|
|
|
- this.otherPrepaidFee = otherPrepaidFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getId() {
|
|
|
|
- return id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setId(Integer id) {
|
|
|
|
- this.id = id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getPrincipal() {
|
|
|
|
- return principal;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPrincipal(String principal) {
|
|
|
|
- this.principal = principal;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOrganName() {
|
|
|
|
- return organName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrganName(String organName) {
|
|
|
|
- this.organName = organName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getOrganId() {
|
|
|
|
- return organId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrganId(Integer organId) {
|
|
|
|
- this.organId = organId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getSaleAmount() {
|
|
|
|
- return saleAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSaleAmount(BigDecimal saleAmount) {
|
|
|
|
- this.saleAmount = saleAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getServiceAmount() {
|
|
|
|
- return serviceAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setServiceAmount(BigDecimal serviceAmount) {
|
|
|
|
- this.serviceAmount = serviceAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getCourseAmount() {
|
|
|
|
- return courseAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCourseAmount(BigDecimal courseAmount) {
|
|
|
|
- this.courseAmount = courseAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getCloudAmount() {
|
|
|
|
- return cloudAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCloudAmount(BigDecimal cloudAmount) {
|
|
|
|
- this.cloudAmount = cloudAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getBusinessRefund() {
|
|
|
|
- return businessRefund;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setBusinessRefund(BigDecimal businessRefund) {
|
|
|
|
- this.businessRefund = businessRefund;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getTotalIncome() {
|
|
|
|
- return totalIncome;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTotalIncome(BigDecimal totalIncome) {
|
|
|
|
- this.totalIncome = totalIncome;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getSaleCost() {
|
|
|
|
- return saleCost;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSaleCost(BigDecimal saleCost) {
|
|
|
|
- this.saleCost = saleCost;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getFixedCosts() {
|
|
|
|
- return fixedCosts;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setFixedCosts(BigDecimal fixedCosts) {
|
|
|
|
- this.fixedCosts = fixedCosts;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getVariableCosts() {
|
|
|
|
- return variableCosts;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setVariableCosts(BigDecimal variableCosts) {
|
|
|
|
- this.variableCosts = variableCosts;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getInternalSettlement() {
|
|
|
|
- return internalSettlement;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setInternalSettlement(BigDecimal internalSettlement) {
|
|
|
|
- this.internalSettlement = internalSettlement;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getTotalCost() {
|
|
|
|
- return totalCost;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTotalCost(BigDecimal totalCost) {
|
|
|
|
- this.totalCost = totalCost;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getQuasiDiscretionaryProfit() {
|
|
|
|
- return quasiDiscretionaryProfit;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setQuasiDiscretionaryProfit(BigDecimal quasiDiscretionaryProfit) {
|
|
|
|
- this.quasiDiscretionaryProfit = quasiDiscretionaryProfit;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getPrepaidFee() {
|
|
|
|
- return prepaidFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPrepaidFee(BigDecimal prepaidFee) {
|
|
|
|
- this.prepaidFee = prepaidFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getPrepayments() {
|
|
|
|
- return prepayments;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPrepayments(BigDecimal prepayments) {
|
|
|
|
- this.prepayments = prepayments;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getReceivables() {
|
|
|
|
- return receivables;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setReceivables(BigDecimal receivables) {
|
|
|
|
- this.receivables = receivables;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public BigDecimal getPayable() {
|
|
|
|
- return payable;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPayable(BigDecimal payable) {
|
|
|
|
- this.payable = payable;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getMonth() {
|
|
|
|
- return month;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setMonth(String month) {
|
|
|
|
- this.month = month;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|