完成【我的·工资结算记录】板块

This commit is contained in:
2025-02-22 16:09:45 +08:00
parent 8ee2e24976
commit 10db6568fc
10 changed files with 69 additions and 14 deletions

View File

@ -366,8 +366,9 @@ public class WgzAppController {
/**
* 【首页】【项目进行中】 项目进行中(分页,但是理论上这里始终只会有一条数据)
* 【首页】【已完成项目】 已完成项目
*/
@ApiOperation("【首页】【项目进行中】 项目进行中")
@ApiOperation("【首页】【项目进行中|已完成项目】 项目进行中")
@PreAuthorize("@ss.hasPermi('wgzApp:user:userUnderway')")
@GetMapping("/WgzAppUserUnderway")
public TableDataInfo<WgzAppUnderwayRes> userUnderway(@Validated WgzAppUnderwayReq req) {
@ -376,8 +377,9 @@ public class WgzAppController {
/**
* 【首页】【项目进行中】 项目进行中·详情
* 【首页】【已完成项目】 已完成项目·详情
*/
@ApiOperation("【首页】【项目进行中】 项目进行中·详情")
@ApiOperation("【首页】【项目进行中|已完成项目】 详情")
@PreAuthorize("@ss.hasPermi('wgzApp:user:userProjectInProgressDetails')")
@GetMapping("/WgzAppUserProjectInProgressDetails/{id}")
public AjaxResult<WgzApplyForPayrollSettlementAddRes> userProjectInProgressDetails(@NotNull(message = "主键不能为空") @PathVariable("id") Long id) {
@ -420,8 +422,9 @@ public class WgzAppController {
/**
* 【首页】【项目进行中】 项目进行中·申请工资结算(新增)
* 【首页】【已完成项目】 已完成项目·申请工资结算(新增)
*/
@ApiOperation("【首页】【项目进行中】 项目进行中·申请工资结算(新增)")
@ApiOperation("【首页】【项目进行中|已完成项目】 申请工资结算(新增)")
@PreAuthorize("@ss.hasPermi('wgzApp:user:userApplyForPayrollSettlementAdd')")
@PostMapping("/WgzAppUserApplyForPayrollSettlementAdd")
public AjaxResult<Boolean> userApplyForPayrollSettlementAdd(@Validated @RequestBody WgzApplyForPayrollSettlementAddReq req) {