123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- 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,
- };
- }
|