lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcPartProcessInfo.java
@@ -34,19 +34,19 @@ /** * 设备编号 */ @Excel(name = "设备编号", width = 15) @Excel(name = "设备编号", width = 20) @ApiModelProperty(value = "设备编号") private String equipmentId; /** * 零件号 */ @Excel(name = "零件号", width = 15) @Excel(name = "零件号", width = 20) @ApiModelProperty(value = "零件号") private String partId; /** * 标准加工时长(min) */ @Excel(name = "标准加工时长(min)", width = 15) @Excel(name = "标准加工时长(min)", width = 20) @ApiModelProperty(value = "标准加工时长(min)") private Integer standardProcessLong; /** @@ -64,7 +64,7 @@ /** * 加工总时长(min) */ @Excel(name = "加工总时长(min)", width = 15) @Excel(name = "加工总时长(min)", width = 18) @ApiModelProperty(value = "加工总时长(min)") private Integer totalProcessLong; lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEquipmentMapper.xml
@@ -107,6 +107,7 @@ <foreach collection="equipmentIds" index="index" item="id" open="(" separator="," close=")"> #{id} </foreach> ORDER BY t1.equipment_id </select> <!--根据部门id查询设备id集合--> lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/impl/MdcEquipmentServiceImpl.java
@@ -463,8 +463,8 @@ } result.put("runData", runData); //坐标信息 // 查询坐标信息 if (!mdcEquipmentDetailedDto.getDriveType().equals("ZUOLAN") || !mdcEquipmentDetailedDto.getDriveType().equals("CurrentState")) { EquipmentXYZ equipmentXYZ = equipmentXYZService.getByEquipmentId(mdcEquipmentDetailedDto.getEquipmentId()); if (equipmentXYZ != null) { Map<String, Object> map = new HashMap<>(); @@ -481,6 +481,7 @@ map.put("babsolute", equipmentXYZ.getBAbsolute()); result.put("xyzList", map); } } } return result;