aps-modules/aps-core/src/main/java/com/aps/core/service/impl/ApsGasPipingRouteStatServiceImpl.java
@@ -476,7 +476,8 @@ } ApsGasPipingRouteStat queryStatParam = new ApsGasPipingRouteStat(); BeanUtils.copyProperties(apsGasPipingRouteStat,queryStatParam); queryStatParam.setMajor(""); queryStatParam.setMajor(apsGasPipingRouteStat.getMajor()); queryStatParam.setPlant(apsGasPipingRouteStat.getPlant()); apsGasPipingRouteStats = apsGasPipingRouteStatMapper.selectApsGasPipingRouteStatList(queryStatParam); //根据开工日进行升序排序 apsGasPipingRouteStats.sort((a, b)->a.getProcessPlanStartDay().compareTo(b.getProcessPlanStartDay())); aps-modules/aps-core/src/main/resources/mapper/core/ApsGasPipingRouteStatMapper.xml
@@ -67,6 +67,7 @@ and process_name in (select process_name from aps_standard_process where major='气柜') </if> </if> <if test="plant != null and plant != ''"> and plant = #{plant} </if> </where> </select>