|
@@ -0,0 +1,19 @@
|
|
|
+package org.springblade.inspection.controller;
|
|
|
+
|
|
|
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+import org.springblade.core.boot.ctrl.BladeController;
|
|
|
+import org.springblade.core.tool.api.R;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+@RestController
|
|
|
+@AllArgsConstructor
|
|
|
+@RequestMapping("/archiveInspection")
|
|
|
+@Api(value = "档案检查信息", tags = "档案检查信息")
|
|
|
+public class ArchiveInspectionController extends BladeController {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|