|
|
@@ -2067,7 +2067,7 @@ public class BusinessScript extends BaseScript {
|
|
|
Set<Entry<String, Object>> toDataArry = toData.entrySet();
|
|
|
for(Entry<String, Object> entryArry : toDataArry){
|
|
|
Object value = entryArry.getValue();
|
|
|
- valuesList.add(BeanUtils.isEmpty(value) ? 0 : value);
|
|
|
+ valuesList.add(BeanUtils.isEmpty(value) ? "" : value);
|
|
|
}
|
|
|
paramObjectsList.add(valuesList.toArray());
|
|
|
}
|