浏览代码

切换钢种改为切换牌号

lingpeng.li 2 月之前
父节点
当前提交
14846a0ed2

+ 2 - 2
zgztBus/jeecg-module-sbm/src/main/java/org/jeecg/modules/billet/shiftConfiguration/controller/ShiftConfigurationController.java

@@ -252,11 +252,11 @@ public class ShiftConfigurationController extends JeecgController<ShiftConfigura
     }
 
     @PostMapping("/switchSteel")
-    @ApiOperation(value = "切换钢种", notes = "切换钢种")
+    @ApiOperation(value = "切换牌号", notes = "切换牌号")
     public Result<Map<String, String>> switchSteel(@RequestBody SwitchSteelDTO switchSteelDTO) {
 
         shiftConfigurationService.updateSteelGradeAndCache(switchSteelDTO);
-        return Result.OK("切换钢种成功");
+        return Result.OK("切换牌号成功");
     }