修改终端商户池时间查询

This commit is contained in:
likewei 2024-08-14 14:55:55 +08:00
parent 52cebb0327
commit 3a73c481c4
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public class WrapperUtils {
if (CollUtil.size(list) == 2) {
if (StringUtils.isNotEmpty(tableName))
allSql.append(" AND ").append(tableName).append(".")
.append(name).append(" between ").append(list.get(0)).append(" AND ").append(list.get(1)).append(" ");
.append(name).append(" between ").append("'").append(list.get(0)).append("'").append(" AND ").append("'").append(list.get(1)).append("'").append(" ");
}
} else {
throw new MybatisConditionException("between 条件必须为集合");