You've already forked FrameTour-BE
feat(source): 添加管理员关联管理功能
- 新增管理员取消关联接口,实现软删除功能 - 新增管理员恢复关联接口,支持已取消记录的重新激活 - 新增查询已取消关联记录的分页接口 - 在MemberSourceEntity实体类中添加deleted和deletedAt字段 - 更新多个Mapper XML文件中的查询条件,过滤已删除记录 - 实现在删除和恢复操作后清除相关缓存的逻辑 - 添加对已删除记录的时间格式化显示支持
This commit is contained in:
@@ -136,7 +136,7 @@
|
||||
FROM `zt`.`face`
|
||||
WHERE `scenic_id` = #{scenicId}
|
||||
AND `create_at` < #{endDate}
|
||||
and `id` not in (select face_id from member_source where is_buy = 1)
|
||||
and `id` not in (select face_id from member_source where is_buy = 1 AND deleted = 0)
|
||||
and `id` not in (select face_id from member_video where is_buy = 1)
|
||||
</select>
|
||||
</mapper>
|
||||
|
||||
Reference in New Issue
Block a user