|
@@ -4,12 +4,17 @@ import com.fdkankan.contro.annotation.SignVerification;
|
|
import com.fdkankan.contro.entity.ScenePlus;
|
|
import com.fdkankan.contro.entity.ScenePlus;
|
|
import com.fdkankan.contro.service.IInnerService;
|
|
import com.fdkankan.contro.service.IInnerService;
|
|
import com.fdkankan.contro.service.IScenePlusService;
|
|
import com.fdkankan.contro.service.IScenePlusService;
|
|
|
|
+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.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
+
|
|
|
|
+import javax.validation.Valid;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 场景文件上传模块
|
|
* 场景文件上传模块
|
|
@@ -23,6 +28,8 @@ public class InnerController {
|
|
private IInnerService innerService;
|
|
private IInnerService innerService;
|
|
@Autowired
|
|
@Autowired
|
|
private IScenePlusService scenePlusService;
|
|
private IScenePlusService scenePlusService;
|
|
|
|
+ @Autowired
|
|
|
|
+ private ILocalFdageLogService localfdageLogService;
|
|
|
|
|
|
@SignVerification
|
|
@SignVerification
|
|
@GetMapping("uploadArtificialResult")
|
|
@GetMapping("uploadArtificialResult")
|
|
@@ -66,5 +73,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();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|