feat(oa): 添加报工补录接口

- 新增 /reportSupplement POST 接口用于报工补录- 实现补录数据插入逻辑
- 添加接口重复提交限制- 集成操作日志记录功能
This commit is contained in:
2025-10-15 10:47:35 +08:00
parent 048b9c5f14
commit c50422f91a

View File

@@ -204,7 +204,7 @@ public class OaProjectReportController extends BaseController {
//补录接口新增接口
@Log(title = "报工补录", businessType = BusinessType.INSERT)
@RepeatSubmit()
@PostMapping()
@PostMapping("/reportSupplement")
public R<Void> reportSupplement(@Validated(AddGroup.class) @RequestBody OaProjectReportBo bo) {
return toAjax(iOaProjectReportService.insertReportSupplement(bo));
}