huliguo
2 天以前 5d7b65670282a4fad015e37d567cfa171b162052
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.web.controller.errand;
 
import com.ruoyi.errand.service.UserCancellationLogService;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@Validated
@RestController
@RequestMapping(value = "/userCancellationLog")
@Api(value = "注销记录", tags = "注销记录操作控制器")
@Slf4j
public class UserCancellationLogController {
    @Autowired
    private UserCancellationLogService userCancellationLogService;
}