refactor(coal): 修正更新主表数据方法的命名

- 将 CoalWashingDailyAnalysisController 中的 updateKfItems 方法重命名为 updateMain
- 此修改提高了代码的可读性和一致性,确保方法命名与功能更加匹配
This commit is contained in:
2025-03-11 22:00:10 +08:00
parent f5437437d1
commit 2c80e14e6d

View File

@@ -63,7 +63,7 @@ public class CoalWashingDailyAnalysisController extends BaseController {
@PostMapping("/updateMain")
@SysLog(action = "编辑")
public CoalWashingDailyAnalysisDto updateMain(@RequestBody UpdateCoalWashingDailyAnalysisDto dto) {
return this.service.updateKfItems(dto);
return this.service.updateMain(dto);
}
@PostMapping("/delete")