he2802 2 years ago
parent
commit
86ff5752c9

+ 1 - 0
zhongzheng-system/src/main/java/com/zhongzheng/modules/top/mall/service/impl/TopActionLogServiceImpl.java

@@ -45,6 +45,7 @@ public class TopActionLogServiceImpl extends ServiceImpl<TopActionLogMapper, Top
         lqw.eq(bo.getStatus() != null, TopActionLog::getStatus, bo.getStatus());
         lqw.eq(StrUtil.isNotBlank(bo.getLogKey()), TopActionLog::getLogKey, bo.getLogKey());
         lqw.eq(bo.getLogAction() != null, TopActionLog::getLogAction, bo.getLogAction());
+        lqw.eq(bo.getMajorId() != null, TopActionLog::getMajorId, bo.getMajorId());
         lqw.like(StrUtil.isNotBlank(bo.getOperName()), TopActionLog::getOperName, bo.getOperName());
         lqw.orderByDesc(TopActionLog::getLogId);
         return entity2Vo(this.list(lqw));