Browse Source

1、陪练课调整
2、付费陪练课

Joburgess 5 years ago
parent
commit
c34cbf439f

+ 7 - 13
mec-web/src/main/java/com/ym/mec/web/controller/TeacherDefaultPracticeGroupSalaryController.java

@@ -1,22 +1,16 @@
 package com.ym.mec.web.controller;
 
+import com.ym.mec.biz.dal.entity.TeacherDefaultPracticeGroupSalary;
+import com.ym.mec.biz.service.TeacherDefaultPracticeGroupSalaryService;
+import com.ym.mec.common.controller.BaseController;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiOperation;
-
-import java.util.Date;
-import java.util.List;
-
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.security.access.prepost.PreAuthorize;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.bind.annotation.*;
 
-import com.ym.mec.biz.dal.entity.TeacherDefaultPracticeGroupSalary;
-import com.ym.mec.biz.service.TeacherDefaultPracticeGroupSalaryService;
-import com.ym.mec.common.controller.BaseController;
+import java.util.Date;
+import java.util.List;
 
 @Api(tags = "老师默认陪练课薪酬")
 @RequestMapping("teacherDefaultPracticeGroupSalary")
@@ -41,7 +35,7 @@ public class TeacherDefaultPracticeGroupSalaryController extends BaseController
 				teacherDefaultPracticeGroupSalaryTemp.getStartDate()) ? succeed() : failed();
 	}
 
-	class TeacherDefaultPracticeGroupSalaryTemp {
+	static class TeacherDefaultPracticeGroupSalaryTemp {
 
 		private List<TeacherDefaultPracticeGroupSalary> teacherDefaultPracticeGroupSalaries;