|
@@ -2,12 +2,14 @@ package com.fdkankan.contro.controller;
|
|
|
|
|
|
import com.fdkankan.contro.annotation.SignVerification;
|
|
import com.fdkankan.contro.annotation.SignVerification;
|
|
import com.fdkankan.contro.service.IInnerService;
|
|
import com.fdkankan.contro.service.IInnerService;
|
|
|
|
+import com.fdkankan.contro.service.ILocalFdageLogService;
|
|
|
|
+import com.fdkankan.contro.vo.LocalfdageLogParamVo;
|
|
import com.fdkankan.web.response.ResultData;
|
|
import com.fdkankan.web.response.ResultData;
|
|
import lombok.extern.log4j.Log4j2;
|
|
import lombok.extern.log4j.Log4j2;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
+
|
|
|
|
+import javax.validation.Valid;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 场景文件上传模块
|
|
* 场景文件上传模块
|
|
@@ -19,6 +21,8 @@ public class InnerController {
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
private IInnerService innerService;
|
|
private IInnerService innerService;
|
|
|
|
+ @Autowired
|
|
|
|
+ private ILocalFdageLogService localfdageLogService;
|
|
|
|
|
|
@SignVerification
|
|
@SignVerification
|
|
@GetMapping("uploadArtificialResult")
|
|
@GetMapping("uploadArtificialResult")
|
|
@@ -27,5 +31,12 @@ public class InnerController {
|
|
return ResultData.ok();
|
|
return ResultData.ok();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @SignVerification
|
|
|
|
+ @PostMapping("noticeLocalfdageLogs")
|
|
|
|
+ public ResultData noticeLocalfdageLogs(@RequestBody @Valid LocalfdageLogParamVo param) throws Exception {
|
|
|
|
+ localfdageLogService.noticeLocalfdageLogs(param);
|
|
|
|
+ return ResultData.ok();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|