Commit a2b44b2e authored by 黎博's avatar 黎博

监控列表页根据监控名称改成模糊搜索

parent cfd6f8c0
......@@ -68,7 +68,7 @@ public class SqlMonitorTaskController {
queryWrapper.eq("service_name", serviceName);
}
if (!StringUtils.isEmpty(taskName)) {
queryWrapper.eq("task_name", taskName);
queryWrapper.like("task_name", taskName);
}
queryWrapper.orderByDesc("id");
IPage<SqlMonitorTask> pageParam = new Page<>(pageNum, pageSize);
......
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