123456789101112131415161718192021 |
- package com.qmth.distributed.print.api;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 用户和角色关联表 前端控制器
- * </p>
- *
- * @author xf
- * @since 2021-03-23
- */
- @RestController
- @RequestMapping("/sysUserRole")
- public class SysUserRoleController {
- }
|