12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
-
- class ExtendContent {
-
- String? extId;
-
-
- String? targetType;
-
-
- String? targetId;
-
-
- String? contentType;
-
-
- String? content;
-
-
- int? sort;
-
-
- String? createDate;
-
- ExtendContent();
-
- ExtendContent.simple({ this.content, this.contentType });
-
- ExtendContent.fromJson(Map<String, dynamic> json)
- : extId = json["extId"],
- targetType = json["targetType"],
- targetId = json["targetId"],
- contentType = json["contentType"],
- content = json["content"],
- sort = json["sort"],
- createDate = json["createDate"];
-
- Map<String, dynamic> toJson() => {
- 'extId' : extId,
- 'targetType' : targetType,
- 'targetId' : targetId,
- 'contentType' : contentType,
- 'content' : content,
- 'sort' : sort,
- 'createDate' : createDate,
- };
- }
|