Commit 81b2c8c0e9ee69bf1b6cda78a0f081f15f1b4551
1 parent
87842def36
Exists in
master
and in
1 other branch
bug
Showing 1 changed file with 4 additions and 0 deletions
talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/ArticleController.java
View file @
81b2c8c
... | ... | @@ -127,6 +127,10 @@ |
127 | 127 | Page<ArticleInfo> page = new Page<>(current, size); |
128 | 128 | Page<ArticleInfo> articlePagePage = new Page<>(); |
129 | 129 | QueryWrapper query=new QueryWrapper(); |
130 | + if(!StringUtils.isEmpty(article.getIid())){ | |
131 | + query.like("iid",article.getIid()); | |
132 | + } | |
133 | + | |
130 | 134 | if(StringUtils.isEmpty(article.getTitle())){ |
131 | 135 | article.setTitle(null); |
132 | 136 | }else{ |