| 1234567891011121314151617181920212223242526272829 |
- package com.ym.mec.web.controller;
- import com.ym.mec.biz.dal.entity.SysUserTenant;
- import com.ym.mec.biz.service.SysUserTenantService;
- import org.springframework.web.bind.annotation.*;
- import com.ym.mec.common.controller.BaseController;
- import io.swagger.annotations.Api;
- import javax.annotation.Resource;
- /**
- * 平台用户与机构关系表(SysUserTenant)表控制层
- *
- * @author hgw
- * @since 2022-03-02 11:09:33
- */
- @Api(tags = "平台用户与机构关系表")
- @RestController
- @RequestMapping("/sysUserTenant")
- public class SysUserTenantController extends BaseController {
- /**
- * 服务对象
- */
- @Resource
- private SysUserTenantService sysUserTenantService;
- }
|