From 5d7b65670282a4fad015e37d567cfa171b162052 Mon Sep 17 00:00:00 2001 From: huliguo <2023611923@qq.com> Date: 星期二, 20 五月 2025 12:25:19 +0800 Subject: [PATCH] 基础代码 --- pt-admin/src/main/java/com/ruoyi/web/controller/errand/UserCancellationLogController.java | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/pt-admin/src/main/java/com/ruoyi/web/controller/errand/UserCancellationLogController.java b/pt-admin/src/main/java/com/ruoyi/web/controller/errand/UserCancellationLogController.java new file mode 100644 index 0000000..a20cae4 --- /dev/null +++ b/pt-admin/src/main/java/com/ruoyi/web/controller/errand/UserCancellationLogController.java @@ -0,0 +1,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; +} \ No newline at end of file -- Gitblit v1.7.1