|
|
@@ -0,0 +1,28 @@
|
|
|
+package com.yingyangfly.platform.controller;
|
|
|
+
|
|
|
+import com.yingyangfly.common.dto.ResultResponse;
|
|
|
+import com.yingyangfly.common.log.annotation.TraceLog;
|
|
|
+import com.yingyangfly.core.domain.EaDetectDetail;
|
|
|
+import com.yingyangfly.core.service.EaDetectDetailService;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+
|
|
|
+@Slf4j
|
|
|
+@RestController
|
|
|
+@RequestMapping("/ea/detect/Detail")
|
|
|
+public class EaDetectDetailController {
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private EaDetectDetailService eaDetectDetailService;
|
|
|
+
|
|
|
+ @PostMapping("/selectByIdList")
|
|
|
+ @TraceLog
|
|
|
+ public ResultResponse selectList(@RequestBody EaDetectDetail eaDetectDetail) {
|
|
|
+ return ResultResponse.success(eaDetectDetailService.selectList(eaDetectDetail));
|
|
|
+ }
|
|
|
+}
|