3.19优化

This commit is contained in:
2025-03-19 10:34:54 +08:00
parent 00a99f8ccd
commit 2b292897d2
12 changed files with 180 additions and 14 deletions

View File

@ -484,6 +484,18 @@
return iWgzPayCalculationService.userApplyForPayrollSettlementList(req);
}
/**
* 【首页】【项目进行中】 项目进行中·申请工资结算(详情)
* 【首页】【已完成项目】 已完成项目·申请工资结算(详情) WgzAppUserApplyForPayrollSettlementDetails
*/
@ApiOperation("【首页】【项目进行中|已完成项目】 申请工资结算(详情)")
//@PreAuthorize("@ss.hasPermi('wgzApp:user:userApplyForPayrollSettlementDetails')")
@RepeatSubmit
@PostMapping("/WgzAppUserApplyForPayrollSettlementDetails/{messageId}")
public AjaxResult<WgzAppUserApplyForPayrollSettlementDetails> userApplyForPayrollSettlementDetails(@NotNull(message = "主键ID不能为空") @PathVariable("id") Long id) {
return AjaxResult.success(iWgzPayCalculationService.userApplyForPayrollSettlementDetails(id));
}
/**
* 【消息】消息类型统计
*/