|
@@ -0,0 +1,45 @@
|
|
|
+package com.ym.mec.biz.dal.dto;
|
|
|
+
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Author Joburgess
|
|
|
+ * @Date 2021/4/15 0015
|
|
|
+ */
|
|
|
+public class TeacherIncomeDto {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "总收入")
|
|
|
+ private BigDecimal totalIncome = new BigDecimal("0");
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "本月预计收入")
|
|
|
+ private BigDecimal thisMonthExpectIncome = new BigDecimal("0");
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "本月实际课耗收入")
|
|
|
+ private BigDecimal thisMonthActualIncome = new BigDecimal("0");
|
|
|
+
|
|
|
+ public BigDecimal getTotalIncome() {
|
|
|
+ return totalIncome;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalIncome(BigDecimal totalIncome) {
|
|
|
+ this.totalIncome = totalIncome;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getThisMonthExpectIncome() {
|
|
|
+ return thisMonthExpectIncome;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setThisMonthExpectIncome(BigDecimal thisMonthExpectIncome) {
|
|
|
+ this.thisMonthExpectIncome = thisMonthExpectIncome;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getThisMonthActualIncome() {
|
|
|
+ return thisMonthActualIncome;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setThisMonthActualIncome(BigDecimal thisMonthActualIncome) {
|
|
|
+ this.thisMonthActualIncome = thisMonthActualIncome;
|
|
|
+ }
|
|
|
+}
|