|
@@ -19,6 +19,12 @@ public class TeacherIncomeReviewDto {
|
|
|
@ApiModelProperty(value = "本月实际课耗收入")
|
|
|
private BigDecimal thisMonthActualIncome = new BigDecimal("0");
|
|
|
|
|
|
+ @ApiModelProperty(value = "大雅课酬")
|
|
|
+ private BigDecimal dayaIncome = new BigDecimal("0");
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "其他课酬")
|
|
|
+ private BigDecimal otherIncome = new BigDecimal("0");
|
|
|
+
|
|
|
public BigDecimal getTotalIncome() {
|
|
|
return totalIncome;
|
|
|
}
|
|
@@ -42,4 +48,20 @@ public class TeacherIncomeReviewDto {
|
|
|
public void setThisMonthActualIncome(BigDecimal thisMonthActualIncome) {
|
|
|
this.thisMonthActualIncome = thisMonthActualIncome;
|
|
|
}
|
|
|
+
|
|
|
+ public BigDecimal getDayaIncome() {
|
|
|
+ return dayaIncome;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDayaIncome(BigDecimal dayaIncome) {
|
|
|
+ this.dayaIncome = dayaIncome;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getOtherIncome() {
|
|
|
+ return otherIncome;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOtherIncome(BigDecimal otherIncome) {
|
|
|
+ this.otherIncome = otherIncome;
|
|
|
+ }
|
|
|
}
|