|
@@ -0,0 +1,16 @@
|
|
|
+package com.hfln.portal.application.controller.web;
|
|
|
+
|
|
|
+
|
|
|
+import cn.hfln.framework.catchlog.CatchAndLog;
|
|
|
+import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@RestController
|
|
|
+@CatchAndLog
|
|
|
+@Tag(name = "web端后事件相关")
|
|
|
+@Slf4j
|
|
|
+@RequestMapping("/web/admin")
|
|
|
+public class WebEventController {
|
|
|
+}
|