This commit is contained in:
王琼钰
2022-09-15 22:22:30 +08:00
committed by coding.net
parent 713ff0bedb
commit ee0d0000f1

View File

@@ -11,4 +11,4 @@ class ChangeSet:
self.deleted.append({ 'type': type, 'id': id })
def update(self, type: str, id: str, property_name: str, property_type: str, property_value: str) -> None:
self.updated.append({ 'type': type, 'id': id, 'property': property, 'property_type': property_type, 'property_value': property_value })
self.updated.append({ 'type': type, 'id': id, 'property': property_name, 'property_type': property_type, 'property_value': property_value })