|
@@ -10,41 +10,41 @@ public class OperatingTotalIncomeDto {
|
|
|
private String organName;
|
|
|
|
|
|
// 学生指导费课耗收入
|
|
|
- private BigDecimal studentGuidanceIncome;
|
|
|
+ private BigDecimal studentGuidanceIncome = BigDecimal.ZERO;
|
|
|
|
|
|
// 云教练团课耗收入
|
|
|
// private BigDecimal cloudCoachGroupClassIncome;
|
|
|
|
|
|
// 学校课程采买课耗收入
|
|
|
- private BigDecimal coursePurchaseIncome;
|
|
|
+ private BigDecimal coursePurchaseIncome = BigDecimal.ZERO;
|
|
|
|
|
|
// 考级
|
|
|
- private BigDecimal examIncome;
|
|
|
+ private BigDecimal examIncome = BigDecimal.ZERO;
|
|
|
|
|
|
// 维修费用
|
|
|
- private BigDecimal maintenanceCost;
|
|
|
+ private BigDecimal maintenanceCost = BigDecimal.ZERO;
|
|
|
|
|
|
// 乐保费用
|
|
|
- private BigDecimal instrumentInsuranceCost;
|
|
|
+ private BigDecimal instrumentInsuranceCost = BigDecimal.ZERO;
|
|
|
|
|
|
// 其他服务收入
|
|
|
- private BigDecimal otherServiceIncome;
|
|
|
+ private BigDecimal otherServiceIncome = BigDecimal.ZERO;
|
|
|
|
|
|
// 云教练收入
|
|
|
- private BigDecimal cloudCoachIncome;
|
|
|
+ private BigDecimal cloudCoachIncome = BigDecimal.ZERO;
|
|
|
|
|
|
// 团购乐器
|
|
|
- private BigDecimal groupPurchaseInstruments;
|
|
|
+ private BigDecimal groupPurchaseInstruments = BigDecimal.ZERO;
|
|
|
|
|
|
// 团购教辅
|
|
|
- private BigDecimal groupPurchaseTeachingAids;
|
|
|
+ private BigDecimal groupPurchaseTeachingAids = BigDecimal.ZERO;
|
|
|
|
|
|
// 大件乐器
|
|
|
- private BigDecimal largeInstruments;
|
|
|
+ private BigDecimal largeInstruments = BigDecimal.ZERO;
|
|
|
|
|
|
// 服务收入
|
|
|
- private BigDecimal serviceIncome;
|
|
|
+ private BigDecimal serviceIncome = BigDecimal.ZERO;
|
|
|
|
|
|
// 销售收入
|
|
|
- private BigDecimal salesIncome;
|
|
|
+ private BigDecimal salesIncome = BigDecimal.ZERO;
|
|
|
}
|