Commit 6bdbdf64 authored by 杨日斐's avatar 杨日斐

服务管理没数据

parent 04836366
...@@ -11,7 +11,10 @@ import com.jfinal.plugin.activerecord.Db; ...@@ -11,7 +11,10 @@ import com.jfinal.plugin.activerecord.Db;
public class SystemService { public class SystemService {
public List<System> findList(String searchText) { public List<System> findList(String searchText) {
/** 服务管理没数据 yangrifei 20210119 */
if (StrKit.notBlank(searchText)) {
searchText = "%" + searchText + "%"; searchText = "%" + searchText + "%";
}
return System.dao.find(Db.getSqlPara("findSystemList", Kv.by("searchText", searchText))); return System.dao.find(Db.getSqlPara("findSystemList", Kv.by("searchText", searchText)));
} }
......
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