Commit 6dffed2b authored by jiawei's avatar jiawei

bug fixed====>审核分页查询,查询没有逻辑删除的数据

parent 91c48631
...@@ -73,6 +73,9 @@ public class AuditServiceImpl extends ServiceImpl<AuditMapper, Audit> implements ...@@ -73,6 +73,9 @@ public class AuditServiceImpl extends ServiceImpl<AuditMapper, Audit> implements
//暂时注掉 //暂时注掉
// .eq("a.level", auditStatusLevel.name()) // .eq("a.level", auditStatusLevel.name())
.eq("a.type", type.name()) .eq("a.type", type.name())
.eq("a.is_deleted", 0)
// .eq("b.is_deleted", 0)
// .eq("c.is_deleted", 0)
.orderByDesc("a.create_time", "a.id"); .orderByDesc("a.create_time", "a.id");
// //
if (status != null) { if (status != null) {
......
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