You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
import 'package:aku_new_community/model/common/img_model.dart';
|
|
import 'package:common_utils/common_utils.dart';
|
|
|
|
@Deprecated('old model to deprecate')
|
|
class MyEventItemModel {
|
|
int? id;
|
|
String? content;
|
|
List<ImgModel>? imgUrl;
|
|
String? createDate;
|
|
|
|
DateTime? get date => DateUtil.getDateTime(createDate!);
|
|
|
|
MyEventItemModel({this.id, this.content, this.imgUrl, this.createDate});
|
|
|
|
MyEventItemModel.fromJson(Map<String, dynamic> json) {
|
|
id = json['id'];
|
|
content = json['content'];
|
|
if (json['imgUrl'] != null) {
|
|
imgUrl = [];
|
|
json['imgUrl'].forEach((v) {
|
|
imgUrl!.add(new ImgModel.fromJson(v));
|
|
});
|
|
} else
|
|
imgUrl = [];
|
|
createDate = json['createDate'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['id'] = this.id;
|
|
data['content'] = this.content;
|
|
if (this.imgUrl != null) {
|
|
data['imgUrl'] = this.imgUrl!.map((v) => v.toJson()).toList();
|
|
}
|
|
data['createDate'] = this.createDate;
|
|
return data;
|
|
}
|
|
}
|