|
@@ -58,7 +58,7 @@ public class ColumnArticleServiceImpl extends ServiceImpl<ColumnArticleMapper, C
|
|
if(Objects.nonNull(dto.getSubId())){
|
|
if(Objects.nonNull(dto.getSubId())){
|
|
wrapper.eq("ca", ColumnArticle::getSubId, dto.getSubId());
|
|
wrapper.eq("ca", ColumnArticle::getSubId, dto.getSubId());
|
|
}
|
|
}
|
|
- if(StrUtil.isNotBlank(dto.getStatus())){
|
|
+ if(StrUtil.isNotBlank(dto.getTitle())){
|
|
wrapper.like("ca", ColumnArticle::getTitle, dto.getTitle());
|
|
wrapper.like("ca", ColumnArticle::getTitle, dto.getTitle());
|
|
}
|
|
}
|
|
wrapper.orderByAsc("ca", ColumnArticle::getSort);
|
|
wrapper.orderByAsc("ca", ColumnArticle::getSort);
|