From c00662a72ca1582c064a2bd76aa92fd22fbfedc6 Mon Sep 17 00:00:00 2001
From: rain <167982779@qq.com>
Date: Thu, 30 May 2024 13:53:07 +0800
Subject: [PATCH] 修改水印部分信息,添加图斑图片审核,大屏图斑图片添加水印
---
src/main/java/com/dji/sample/patches/controller/PatchesController.java | 19 ++++++++++++++-----
1 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/src/main/java/com/dji/sample/patches/controller/PatchesController.java b/src/main/java/com/dji/sample/patches/controller/PatchesController.java
index e2a21fe..93da704 100644
--- a/src/main/java/com/dji/sample/patches/controller/PatchesController.java
+++ b/src/main/java/com/dji/sample/patches/controller/PatchesController.java
@@ -11,6 +11,7 @@
import com.dji.sample.patches.service.GetPatchesService;
import com.dji.sample.patches.service.ShpToDataSourceService;
import com.dji.sample.patches.service.impl.ShpToDataSourceServiceImpl;
+import com.dji.sample.patches.utils.TimerUtil;
import com.dji.sample.territory.service.impl.TbDkjbxxServiceImpl;
import com.dji.sample.wayline.model.entity.WaylineFileEntity;
import com.dji.sample.wayline.service.IWaylineFileService;
@@ -38,6 +39,8 @@
private IWaylineFileService waylineFileService;
@Autowired
private TbDkjbxxServiceImpl tbDkjbxxService;
+ @Autowired
+ private TimerUtil timerUtil;
/**
* 根据workspaceId获取图斑列表信息
@@ -71,6 +74,17 @@
public ResponseResult del() {
getPatchesService.delPatches();
return ResponseResult.success();
+ }
+
+ @GetMapping("/useMyTask")
+ public ResponseResult useMyTask() throws Exception {
+ try {
+// timerUtil.myTask();
+ timerUtil.myTask2();
+ return ResponseResult.success();
+ } catch (Exception e) {
+ throw new RuntimeException("db存储发送出现异常");
+ }
}
/**
@@ -134,10 +148,5 @@
throw new RuntimeException(e);
}
return ResponseResult.success(infoMap);
- }
- @PostMapping("/test")
- public void test(){
- List<LotInfo> list=getPatchesService.listLotinfo();
- tbDkjbxxService.insert(list);
}
}
--
Gitblit v1.9.3