RoleController.java 617 Bytes
Newer Older
吴泽佳's avatar
吴泽佳 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
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;

}