fix: 拆分编辑问题修复

This commit is contained in:
yjz
2024-03-29 19:05:44 +08:00
parent 426fb15afa
commit 2103ba16b2
@@ -16,6 +16,6 @@ public class UniversalImpl extends AbstractConditionBase {
@Override
public String buildUpdate(String fieldName, String value){
return fieldName + " = " + "'" + value + "'";
return fieldName + " = " + "'" + value.replace("'","\\'") + "'";
}
}