whycxzp
2020-12-16 0f4c5190746db28618ab0f35e65be41ef8fc78ed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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(){
 
    }
}