feat: 新增对 未知key 的处理逻辑
All checks were successful
缓存序列化结构检查 / cache-schema-check (push) Has been skipped

This commit is contained in:
2026-07-14 15:21:34 +08:00
parent e7aa970ef8
commit c65bee5a76
5 changed files with 243 additions and 59 deletions

View File

@@ -8,7 +8,9 @@ public class SchemaChange {
private Severity severity;
private ChangeType changeType;
private String keyPattern;
private String keyExpression;
private String writeLocation;
private String valueType;
private String fieldPath;
private String oldValue;
private String newValue;
@@ -43,6 +45,14 @@ public class SchemaChange {
this.keyPattern = keyPattern;
}
public String getKeyExpression() {
return keyExpression;
}
public void setKeyExpression(String keyExpression) {
this.keyExpression = keyExpression;
}
public String getWriteLocation() {
return writeLocation;
}
@@ -51,6 +61,14 @@ public class SchemaChange {
this.writeLocation = writeLocation;
}
public String getValueType() {
return valueType;
}
public void setValueType(String valueType) {
this.valueType = valueType;
}
public String getFieldPath() {
return fieldPath;
}