ADD:未绑定被检设备查询返回详细信息

This commit is contained in:
贾同学
2025-08-12 20:41:52 +08:00
parent 50d626f563
commit ac31267eb9

View File

@@ -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<PqDevMapper, PqDev> implements
Map<String, Object> 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;