mod: 会员标识,回复按钮/高度,搜索页面

This commit is contained in:
guozhigq
2023-08-02 11:31:32 +08:00
parent e97abb545f
commit f3f0f64e4d
12 changed files with 146 additions and 123 deletions

View File

@ -117,7 +117,7 @@ class ModuleAuthorModel {
this.pubTime,
this.pubTs,
this.type,
// this.vip,
this.vip,
});
String? face;
@ -130,6 +130,7 @@ class ModuleAuthorModel {
String? pubTime;
int? pubTs;
String? type;
Map? vip;
ModuleAuthorModel.fromJson(Map<String, dynamic> json) {
face = json['face'];
@ -142,6 +143,7 @@ class ModuleAuthorModel {
pubTime = json['pub_time'];
pubTs = json['pub_ts'] == 0 ? null : json['pub_ts'];
type = json['type'];
vip = json['vip'];
}
}