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;