通用工具类中sKeyStr转为小写。

This commit is contained in:
fys 2018-06-14 15:39:07 +08:00
parent 182ee4e9d0
commit dbe7ae4669

View File

@ -87,7 +87,7 @@ public class AweDoCommUtil {
oldStr = array[i - 1] + ":" + value;
// System.out.println("old: " + oldStr);
newStr = sKeyStr + operation + "'" + paramMap.get(sKeyStr) + "'";
newStr = sKeyStr + operation + "'" + paramMap.get(sKeyStr.toLowerCase()) + "'";
System.out.println(sKeyStr + operation + ":" + value + " Ìæ»»³É " + newStr);
oldStr = sKeyStr + operation + ":" + value;
sJboWhere = sJboWhere.replace(oldStr, newStr);