From 057d4df78bcc5b34ca7c6897918946c4a9e65d18 Mon Sep 17 00:00:00 2001 From: Fancy <Fancy.fx@outlook.com> Date: 星期二, 14 一月 2025 13:52:06 +0800 Subject: [PATCH] queryStatisticOrder --- pms-parent/pms-web-other/src/main/java/com/dy/pmsOther/dyFm/FmCtrl.java | 19 ++++++++++++++++++- 1 files changed, 18 insertions(+), 1 deletions(-) diff --git a/pms-parent/pms-web-other/src/main/java/com/dy/pmsOther/dyFm/FmCtrl.java b/pms-parent/pms-web-other/src/main/java/com/dy/pmsOther/dyFm/FmCtrl.java index df8e93d..c4b85b9 100644 --- a/pms-parent/pms-web-other/src/main/java/com/dy/pmsOther/dyFm/FmCtrl.java +++ b/pms-parent/pms-web-other/src/main/java/com/dy/pmsOther/dyFm/FmCtrl.java @@ -10,7 +10,7 @@ import java.util.List; /** - * 鍗曠偣鐧诲綍锛� + * 鍒嗗竷寮弚eb鏂囦欢绯荤粺绠$悊绯荤粺 */ @Slf4j @RestController @@ -130,4 +130,21 @@ } + /** + * 瑙f瀽鍝堝笇鍊硷紝璁$畻鍑鸿鍝堝笇鍊煎搴旂殑鏂囦欢鏈嶅姟鍣ㄥ睘鎬� + * @param hashCodes + * @return + */ + @PostMapping(path = "parseHashcodeList") + public FileRestVo[] parseHashcodeList(List<Integer> hashCodes){ + List<FileRestVo> rList = new ArrayList<FileRestVo>() ; + if(hashCodes != null && hashCodes.size() > 0){ + for (Integer hashCode : hashCodes){ + rList.add(parseHashcode(hashCode)) ; + } + } + return rList.toArray(new FileRestVo[0]) ; + } + + } -- Gitblit v1.8.0