#
Administrator
2026-04-28 dd891ef35f89458f0579fcebffb2c68e1a0772d3
src/main/java/com/zy/core/utils/StationOperateProcessUtils.java
@@ -267,10 +267,7 @@
    private void submitStationOutExecuteFinishTasksInternal(MainProcessLane lane, long minIntervalMs) {
        List<WrkMast> wrkMasts = wrkMastService.selectList(new EntityWrapper<WrkMast>().eq("wrk_sts", WrkStsType.STATION_RUN.sts));
        for (final WrkMast wrkMast : wrkMasts) {
            Integer laneKey = wrkMast == null ? null : wrkMast.getStaNo();
            if (laneKey == null) {
                laneKey = wrkMast == null ? null : wrkMast.getWrkNo();
            }
            Integer laneKey = wrkMast == null ? null : wrkMast.getWrkNo();
            mainProcessTaskSubmitter.submitKeyedSerialTask(
                    lane,
                    laneKey,
@@ -307,10 +304,7 @@
    private void submitCheckTaskToCompleteTasksInternal(MainProcessLane lane, long minIntervalMs) {
        List<WrkMast> wrkMasts = wrkMastService.selectList(new EntityWrapper<WrkMast>().eq("wrk_sts", WrkStsType.STATION_RUN_COMPLETE.sts));
        for (final WrkMast wrkMast : wrkMasts) {
            Integer laneKey = wrkMast == null ? null : wrkMast.getStaNo();
            if (laneKey == null) {
                laneKey = wrkMast == null ? null : wrkMast.getWrkNo();
            }
            Integer laneKey = wrkMast == null ? null : wrkMast.getWrkNo();
            mainProcessTaskSubmitter.submitKeyedSerialTask(
                    lane,
                    laneKey,