From ac31267eb9a06333207ae743833d89c53fbb5c44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=BE=E5=90=8C=E5=AD=A6?= Date: Tue, 12 Aug 2025 20:41:52 +0800 Subject: [PATCH] =?UTF-8?q?ADD:=E6=9C=AA=E7=BB=91=E5=AE=9A=E8=A2=AB?= =?UTF-8?q?=E6=A3=80=E8=AE=BE=E5=A4=87=E6=9F=A5=E8=AF=A2=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=E8=AF=A6=E7=BB=86=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../njcn/gather/device/service/impl/PqDevServiceImpl.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/detection/src/main/java/com/njcn/gather/device/service/impl/PqDevServiceImpl.java b/detection/src/main/java/com/njcn/gather/device/service/impl/PqDevServiceImpl.java index 0e03f6dc..d5217cf0 100644 --- a/detection/src/main/java/com/njcn/gather/device/service/impl/PqDevServiceImpl.java +++ b/detection/src/main/java/com/njcn/gather/device/service/impl/PqDevServiceImpl.java @@ -57,7 +57,6 @@ import org.springframework.transaction.annotation.Transactional; import org.springframework.web.multipart.MultipartFile; import javax.servlet.http.HttpServletResponse; -import java.math.BigDecimal; import java.time.LocalDateTime; import java.util.*; import java.util.regex.Pattern; @@ -269,6 +268,11 @@ public class PqDevServiceImpl extends ServiceImpl implements Map map = new HashMap<>(); map.put("id", pqDev.getId()); map.put("name", pqDev.getName()); + map.put("devType", pqDev.getDevType()); + map.put("manufacturer", pqDev.getManufacturer()); + map.put("cityName", pqDev.getCityName()); + map.put("gdName", pqDev.getGdName()); + map.put("subName", pqDev.getSubName()); return map; }).collect(Collectors.toList()); return result;