12345678910111213141516171819 |
- package com.smcic.api.operate.controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 前端控制器
- * </p>
- *
- * @author syj
- * @since 2022-12-10
- */
- @RestController
- @RequestMapping("/operate/operate")
- public class OperateController {
- }
|