ClassScheduleAPI.java 516 B

123456789101112131415
  1. package com.template.api;
  2. import com.template.model.result.CommonResult;
  3. import io.swagger.annotations.ApiOperation;
  4. import org.springframework.web.bind.annotation.GetMapping;
  5. import org.springframework.web.bind.annotation.RequestMapping;
  6. @RequestMapping("/auto/class-schedule")
  7. public interface ClassScheduleAPI {
  8. @GetMapping("/schedule")
  9. @ApiOperation(value = "创建课表", notes = "创建课表", httpMethod = "POST")
  10. CommonResult schedule(String stateTime,String endTime,String teacherName);
  11. }