|
|
@@ -28,10 +28,6 @@ import org.springframework.util.DigestUtils;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
-import javax.crypto.Cipher;
|
|
|
-import javax.crypto.spec.IvParameterSpec;
|
|
|
-import javax.crypto.spec.SecretKeySpec;
|
|
|
-import java.nio.charset.StandardCharsets;
|
|
|
import java.util.*;
|
|
|
|
|
|
import static com.lc.ibps.api.base.constants.StateEnum.ERROR;
|
|
|
@@ -142,7 +138,10 @@ public class UpdateDataTableImpl extends GenericProvider implements UpdateDataTa
|
|
|
werStr = wsf.toString();
|
|
|
// 去除多余的 "and"
|
|
|
werStr = werStr.substring(0,werStr.length()-4);
|
|
|
+
|
|
|
String setSql = JSONObject.toJSONString(psf);
|
|
|
+ setSql = setSql.trim().replaceAll("^\"|\"$", "");
|
|
|
+
|
|
|
integer = updateDataTableDao.updateBatchTable(tableName , setSql , werStr);
|
|
|
}
|
|
|
}
|