1234567891011121314151617181920 |
- package com.qmth.distributed.print.api;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 基础教学班表 前端控制器
- * </p>
- *
- * @author CaoZixuan
- * @since 2024-02-22
- */
- @RestController
- @RequestMapping("/basic-teach-clazz")
- public class BasicTeachClazzController {
- }
|