feat: 显示联合投稿up
This commit is contained in:
@ -703,3 +703,43 @@ class Vip {
|
||||
status = json['status'];
|
||||
}
|
||||
}
|
||||
|
||||
class Staff {
|
||||
Staff({
|
||||
this.mid,
|
||||
this.title,
|
||||
this.name,
|
||||
this.face,
|
||||
this.vip,
|
||||
});
|
||||
|
||||
int? mid;
|
||||
String? title;
|
||||
String? name;
|
||||
String? face;
|
||||
int? status;
|
||||
Vip? vip;
|
||||
|
||||
Staff.fromJson(Map<String, dynamic> json) {
|
||||
mid = json['mid'];
|
||||
title = json['title'];
|
||||
name = json['name'];
|
||||
face = json['face'];
|
||||
vip = Vip.fromJson(json['vip']);
|
||||
}
|
||||
}
|
||||
|
||||
class Vip {
|
||||
Vip({
|
||||
this.type,
|
||||
this.status,
|
||||
});
|
||||
|
||||
int? type;
|
||||
int? status;
|
||||
|
||||
Vip.fromJson(Map<String, dynamic> json) {
|
||||
type = json['type'];
|
||||
status = json['status'];
|
||||
}
|
||||
}
|
||||
|
@ -746,4 +746,8 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
// Widget StaffPanel(BuildContext context, videoIntroController) {
|
||||
// return
|
||||
// }
|
||||
}
|
||||
|
Reference in New Issue
Block a user