1234567891011121314151617181920 |
- package com.szwl.controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 部门表(用于研发部值日通知) 前端控制器
- * </p>
- *
- * @author wuhs
- * @since 2022-07-14
- */
- @RestController
- @RequestMapping("/tDepartment")
- public class TDepartmentController {
- }
|