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