|
|
@@ -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));
|