增加消息逻辑删除,排错

This commit is contained in:
2025-02-28 14:08:35 +08:00
parent 900265b8b2
commit b32a787f5f
4 changed files with 5 additions and 2 deletions

View File

@ -117,6 +117,7 @@ public class BusinessTask
//表示有上班缺卡,添加缺卡信息
if (count == 0) {
//添加缺卡信息
System.out.println("上班缺卡-------"+by.getUserId());
WgzAttendance attendance = new WgzAttendance()
.setRecruitId(by.getRecruitId())
.setUserId(by.getUserId())

View File

@ -94,6 +94,7 @@ public class WgzMessage implements Serializable {
/** 删除标志0代表存在 2代表删除 */
@Excel(name = "删除标志" , readConverterExp = "0=代表存在,2=代表删除")
@ApiModelProperty("删除标志0代表存在 2代表删除")
@TableLogic
private String delFlag;
/** 创建者 */

View File

@ -163,8 +163,6 @@ public class WgzMessageServiceImpl extends ServicePlusImpl<WgzMessageMapper, Wgz
public TableDataInfo<WgzAppGetMessageListRes> userGetMessageList(WgzAppGetMessageListReq req) {
Long appUserId = SecurityUtils.getAppUserId();
WgzUser wgz = wgzUserService.findByUserId(appUserId);
req.setRecipientId(appUserId);
Page<WgzAppGetMessageListReq> queryDTOPage = new Page<>();
queryDTOPage.setCurrent(req.getPageNum());