package com.tanpu.feo.feojob.controller; import com.tanpu.feo.feojob.service.RoleService; import io.swagger.annotations.Api; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * 角色信息表 Controller * * @author zejia zj wu 2021年05月19日 * @version 1.0 */ @RestController @Api(tags = "角色信息表") @RequestMapping(value = "v1/role") @Slf4j public class RoleController { @Autowired private RoleService roleService; }