Commit 6458bc00 authored by suhuiguang's avatar suhuiguang

1.管道起始位置转json

parent 36067bde
...@@ -107,6 +107,14 @@ public class SingleDataChangeProcessStrategy implements IChangeDataProcessStrate ...@@ -107,6 +107,14 @@ public class SingleDataChangeProcessStrategy implements IChangeDataProcessStrate
jsonFields.add(field.getName()); jsonFields.add(field.getName());
} }
} }
Field[] fields5 = TechParamsPipelineChangeFieldDto.class.getDeclaredFields();
for (Field field : fields5) {
field.setAccessible(true);
FieldDisplayDefine fieldDisplayDefine = field.getAnnotation(FieldDisplayDefine.class);
if (fieldDisplayDefine != null && fieldDisplayDefine.type() == JSON.class) {
jsonFields.add(field.getName());
}
}
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment