Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-09 12:00:35 +08:00
parent c67866a148
commit dc9b345e99
9 changed files with 234 additions and 196 deletions

View File

@@ -43,9 +43,9 @@ class Vip {
Label? label;
Vip.fromJson(Map<String, dynamic> json) {
type = json['type'];
status = json['status'] ?? 0;
dueDate = json['due_date'];
type = json['type'] ?? json['vipType'];
status = json['status'] ?? json['vipStatus'] ?? 0;
dueDate = json['due_date'] ?? json['vipDueDate'];
if (json['label'] != null) label = Label.fromJson(json['label']);
}
}