1234567891011121314151617181920212223242526272829303132333435 |
- class NewsInformationModel {
- String? newsId;
- String? title;
- String? typeId;
- String? typeNam;
- String? thumb;
- num? weight;
- num? status;
- String? createDate;
- String? contentList;
- NewsInformationModel();
-
- NewsInformationModel.fromJson(Map<String, dynamic> json)
- : newsId = json["newsId"],
- title = json["title"],
- typeId = json["typeId"],
- typeNam = json["typeNam"],
- thumb = json["thumb"],
- weight = json["weight"],
- status = json["status"],
- createDate = json["createDate"],
- contentList = json["contentList"];
-
- Map<String, dynamic> toJson() => {
- 'newsId': newsId,
- 'title': title,
- 'typeId': typeId,
- 'typeNam': typeNam,
- 'thumb': thumb,
- 'weight': weight,
- 'status': status,
- 'createDate': createDate,
- 'contentList': contentList,
- };
- }
|