3.17优化

This commit is contained in:
2025-03-17 11:45:27 +08:00
parent c0fc2dc99f
commit 69c3106e2d
7 changed files with 48 additions and 23 deletions

View File

@ -304,8 +304,8 @@
@ApiOperation("【考勤打卡】【打卡日历】 打卡日历记录")
//@PreAuthorize("@ss.hasPermi('wgzApp:user:userPunchTheCalendarRecord')")
@GetMapping("/WgzAppUserPunchTheCalendarRecord")
public AjaxResult<WgzAppPunchTheCalendarRecordRes> userPunchTheCalendarRecord() {
return AjaxResult.success(iWgzAttendanceService.userPunchTheCalendarRecord());
public AjaxResult<WgzAppPunchTheCalendarRecordRes> userPunchTheCalendarRecord(@Validated WgzAppUserPunchTheCalendarRecordReq req) {
return AjaxResult.success(iWgzAttendanceService.userPunchTheCalendarRecord(req));
}
/**