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;
|
}
|