BUG修复-花名册动态搜索条件BUG修复

This commit is contained in:
dxfeng 2024-07-15 09:27:33 +08:00
parent f2fabe198d
commit 99901f5cb9
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public enum DBType implements DBOperateAdapter {
@Override
public String concat(String some) {
return " ','+" + some + "+',' ";
return " ',cast('+" + some + "as varchar)+',' ";
}
@Override