whycrzg
2021-04-25 e376d5f2831e676b59ff92f7af9272b68cf11531
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.whyc.controller;
 
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@RequestMapping("operationLog")
@RestController
@Api(tags = "操作日志")
@Slf4j
public class OperationLogController {
 
 
 
}