消息发送完成
This commit is contained in:
@ -240,7 +240,6 @@ public class WgzAppController {
|
||||
return AjaxResult.success(iWgzDailyClockService.userDailyClock(req));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 【日报】日报日历·日报记录
|
||||
*/
|
||||
@ -462,7 +461,6 @@ public class WgzAppController {
|
||||
return AjaxResult.success(iWgzMessageService.userMessageTypeStatistics(appUserId));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 【消息】获取消息列表-0全部 1报名 2工资 3其他 (打卡、系统)
|
||||
*/
|
||||
@ -488,8 +486,8 @@ public class WgzAppController {
|
||||
*/
|
||||
@ApiOperation("【消息】【报名消息】 报名消息·确认|拒绝报名")
|
||||
//@PreAuthorize("@ss.hasPermi('wgzApp:user:userConfirmRegistration')")
|
||||
@GetMapping("/WgzAppUserConfirmRegistration")
|
||||
public AjaxResult<Boolean> userConfirmRegistration(@Validated WgzAppConfirmRegistrationReq req) {
|
||||
@PutMapping("/WgzAppUserConfirmRegistration")
|
||||
public AjaxResult<Boolean> userConfirmRegistration(@Validated @RequestBody WgzAppConfirmRegistrationReq req) {
|
||||
return AjaxResult.success(iBgtProjectRecruitApplyService.userConfirmRegistration(req));
|
||||
}
|
||||
|
||||
@ -511,7 +509,7 @@ public class WgzAppController {
|
||||
* 【我的】【签协议】协议列表
|
||||
1-劳动合同
|
||||
*/
|
||||
@ApiOperation("通用·附件获取(仅限和务工者直接关联的)")
|
||||
@ApiOperation("【通用】附件获取(仅限和务工者直接关联的)")
|
||||
//@PreAuthorize("@ss.hasPermi('wgzApp:user:userAttachmentAcquisition')")
|
||||
@GetMapping("/wgzUserAttachmentAcquisition")
|
||||
public AjaxResult<WgzAppAttachmentAcquisitionRes> userAttachmentAcquisition(@Validated WgzAppAttachmentAcquisitionReq req) {
|
||||
@ -559,7 +557,7 @@ public class WgzAppController {
|
||||
* 【我的】【请假】 获取上下班时间
|
||||
* 【考勤打卡】【打卡】 获取上下班时间
|
||||
*/
|
||||
@ApiOperation("通用·获取上下班时间")
|
||||
@ApiOperation("【通用】获取上下班时间")
|
||||
//@PreAuthorize("@ss.hasPermi('wgzApp:user:userGetCommutingTime')")
|
||||
@GetMapping("/WgzAppUserGetCommutingTime")//PageReq
|
||||
public AjaxResult<Map<String, LocalTime>> userGetCommutingTime() {
|
||||
@ -575,6 +573,16 @@ public class WgzAppController {
|
||||
return AjaxResult.success(mp);
|
||||
}
|
||||
|
||||
/**
|
||||
* 【消息】
|
||||
*/
|
||||
@ApiOperation("【通用】修改已读未读状态")
|
||||
//@PreAuthorize("@ss.hasPermi('wgzApp:user:userReadUnread')")
|
||||
@PutMapping("/WgzAppUserReadUnread")
|
||||
public AjaxResult<Boolean> userReadUnread(@Validated @RequestBody WgzAppReadUnreadReq req) {
|
||||
return AjaxResult.success(iWgzMessageService.userReadUnread(req));
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user