提交人:csx

提交时间:2025年01月19日
提交内容:推送共享优化
This commit is contained in:
1981897232@qq.com 2026-01-21 12:34:32 +08:00
parent 758e682114
commit 474640f5c1
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ public class SavePayByWorkflowApiPlugin implements Serializable {
DataEntityPropertyCollection properties = dataEntity.getDataEntityType().getProperties(); DataEntityPropertyCollection properties = dataEntity.getDataEntityType().getProperties();
for (IDataEntityProperty property : properties) { for (IDataEntityProperty property : properties) {
String remark = property.getName(); String remark = property.getName();
Object value = dataEntity.get("name"); Object value = dataEntity.get(remark);
if (value instanceof DynamicObject) { if (value instanceof DynamicObject) {
returnData.put(remark, ((DynamicObject)value).getPkValue()); returnData.put(remark, ((DynamicObject)value).getPkValue());
} else if (value instanceof Date) { } else if (value instanceof Date) {