绩效统计页面开发

This commit is contained in:
朱昊天
2026-07-10 17:25:23 +08:00
parent 9c9d3d4017
commit ea779e131e
8 changed files with 680 additions and 248 deletions

View File

@@ -85,6 +85,17 @@ public class PerfDeptSummaryController extends BaseController {
return toAjax(iPerfDeptSummaryService.updateByBo(bo));
}
/**
* 保存车间月度汇总(按 deptId + period 自动新增或更新)
* 前端统计页使用:将当前页面计算/展示的汇总数据落库到 perf_dept_summary 表。
*/
@Log(title = "车间月度汇总", businessType = BusinessType.OTHER)
@RepeatSubmit()
@PostMapping("/saveByPeriod")
public R<Void> saveByPeriod(@RequestBody PerfDeptSummaryBo bo) {
return toAjax(iPerfDeptSummaryService.saveByDeptPeriod(bo));
}
/**
* 删除车间月度汇总
*