From ab79b6bd3a0aaa4c64d4b2698b11e08f7c51f474 Mon Sep 17 00:00:00 2001 From: guoshengxiong <1923636941@qq.com> Date: Thu, 8 May 2025 20:45:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8C=85=E5=A4=B4bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../baotou/service/impl/LiftingOperationServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/zhgd/xmgl/modules/baotou/service/impl/LiftingOperationServiceImpl.java b/src/main/java/com/zhgd/xmgl/modules/baotou/service/impl/LiftingOperationServiceImpl.java index 6129d9e1e..4fc1c7d38 100644 --- a/src/main/java/com/zhgd/xmgl/modules/baotou/service/impl/LiftingOperationServiceImpl.java +++ b/src/main/java/com/zhgd/xmgl/modules/baotou/service/impl/LiftingOperationServiceImpl.java @@ -227,7 +227,7 @@ public class LiftingOperationServiceImpl extends ServiceImpl level = Arrays.asList("一级(M>100吨)", "二级(40吨≤M≤100吨)", "三级(M<40吨)"); - operation.setLevel(level.indexOf(FlowUtil.getString(map, "level") + 1)); + operation.setLevel(level.indexOf(FlowUtil.getString(map, "level")) + 1); operation.setOperatorLicenseNumber(operatorLicenseNumber); operation.setSafetyMeasuresList(safetyMeasuresList); operation.setOperationUnitConstructionApplicant(operationUnitConstructionApplicant);