包头bug修复

This commit is contained in:
guoshengxiong 2025-05-08 20:45:34 +08:00
parent 0bc477b283
commit ab79b6bd3a

View File

@ -227,7 +227,7 @@ public class LiftingOperationServiceImpl extends ServiceImpl<LiftingOperationMap
operation.setCraneTypeLicensePlateNumber(craneTypeLicensePlateNumber);
operation.setLoadDescription(loadDescription);
List<String> level = Arrays.asList("一级M100吨", "二级40吨≤M≤100吨", "三级M40吨");
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);