package com.whyc.controller;
|
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiOperation;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
@RequestMapping("role")
|
@RestController
|
@Slf4j
|
@Api(value ="role value",tags = "角色")
|
public class RoleController {
|
|
@GetMapping
|
@ApiOperation(value = "查询")
|
public void get(){
|
|
}
|
}
|