From 94174d2cc22afed6f41c270d970903484bfc5708 Mon Sep 17 00:00:00 2001
From: rain <167982779@qq.com>
Date: Mon, 05 Aug 2024 16:06:18 +0800
Subject: [PATCH] SM2测试类
---
src/main/java/com/dji/sample/patches/service/GetPatchesService.java | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/src/main/java/com/dji/sample/patches/service/GetPatchesService.java b/src/main/java/com/dji/sample/patches/service/GetPatchesService.java
index 02c6c5f..dcb1c35 100644
--- a/src/main/java/com/dji/sample/patches/service/GetPatchesService.java
+++ b/src/main/java/com/dji/sample/patches/service/GetPatchesService.java
@@ -14,8 +14,10 @@
* @return 返回一个包含查询结果和分页信息的PaginationData对象。
*/
PaginationData<LotInfo> limitGet(PatchesParam param);
- void delPatches();
-
+ int delPatches(String workspaceId);
+ List<LotInfo> getLotInfosByIds(List<Integer> ids);
+ void patchesPushed(String taskId, String dkbh, String workspaceId);
+ int deleteOne(int id);
/**
* 根据条件获取照片的分页数据
*
@@ -24,7 +26,7 @@
* @return 返回照片的分页数据,包括分页信息和照片实体列表
*/
PaginationData<MediaFileEntity> getPhoto(PatchesParam param,String dkbh);
-
+ LotInfo getPatchesFromId(String patchesId);
/**
* 根据条件获取照片的分页数据
*
@@ -42,5 +44,9 @@
*/
LotInfo getLotinfo(String dkbh,String workspaceId);
- List<LotInfo>listLotinfo();
+ List<LotInfo>listLotinfo(String workspaceID);
+
+ void insertLotinfo(List<LotInfo> list);
+
+ LotInfo getLotinfoToDb(String dkbh);
}
--
Gitblit v1.9.3