|
@@ -10,6 +10,7 @@ import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
@@ -29,7 +30,7 @@ public class CourseScheduleTeacherSalaryController extends BaseController {
|
|
|
private SysUserFeignService sysUserFeignService;
|
|
|
|
|
|
@ApiOperation(value = "确定教师指定月份的课酬")
|
|
|
- @GetMapping("confirmTeacherMonthSalary")
|
|
|
+ @PostMapping("confirmTeacherMonthSalary")
|
|
|
public HttpResponseResult confirmTeacherMonthSalary(String month){
|
|
|
SysUser sysUser = sysUserFeignService.queryUserInfo();
|
|
|
if (sysUser == null) {
|