提交 8394c9bf 编写于 作者: L ligang

update countQueuePaging and queryQueuePaging

上级 5d41d664
......@@ -127,7 +127,7 @@ public class QueueMapperProvider {
FROM(TABLE_NAME);
Object searchVal = parameter.get("searchVal");
if(searchVal != null && StringUtils.isNotEmpty(searchVal.toString())){
WHERE( " queue like concat('%', #{searchVal}, '%') ");
WHERE( " queue_name like concat('%', #{searchVal}, '%') ");
}
}}.toString();
}
......@@ -144,7 +144,7 @@ public class QueueMapperProvider {
FROM(TABLE_NAME);
Object searchVal = parameter.get("searchVal");
if(searchVal != null && StringUtils.isNotEmpty(searchVal.toString())){
WHERE( " queue like concat('%', #{searchVal}, '%') ");
WHERE( " queue_name like concat('%', #{searchVal}, '%') ");
}
ORDER_BY(" update_time desc limit #{offset},#{pageSize} ");
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册