Commit 48fd0e08 authored by unset's avatar unset

影像图库新增批量上下架以及删除接口

parent 91911aaf
...@@ -125,6 +125,7 @@ public class NoticeInfoBiz extends BaseBiz<NoticeInfoMapper,NoticeInfo> { ...@@ -125,6 +125,7 @@ public class NoticeInfoBiz extends BaseBiz<NoticeInfoMapper,NoticeInfo> {
Example.Criteria criteria = example.createCriteria(); Example.Criteria criteria = example.createCriteria();
criteria.andEqualTo("isRead", 1); criteria.andEqualTo("isRead", 1);
criteria.andEqualTo("userId", noticeInfoDto.getUserId()); criteria.andEqualTo("userId", noticeInfoDto.getUserId());
criteria.andEqualTo("isDel", 0);
return ObjectRestResponse.succ(mapper.selectCountByExample(example)); return ObjectRestResponse.succ(mapper.selectCountByExample(example));
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment