mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-21 17:46:24 +08:00
Refactor member page (#3)
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
This commit is contained in:
31
lib/models/space/vip.g.dart
Normal file
31
lib/models/space/vip.g.dart
Normal file
@@ -0,0 +1,31 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'vip.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
Vip _$VipFromJson(Map<String, dynamic> json) => Vip(
|
||||
vipType: (json['vipType'] as num?)?.toInt(),
|
||||
vipDueDate: (json['vipDueDate'] as num?)?.toInt(),
|
||||
dueRemark: json['dueRemark'] as String?,
|
||||
accessStatus: (json['accessStatus'] as num?)?.toInt(),
|
||||
vipStatus: (json['vipStatus'] as num?)?.toInt(),
|
||||
vipStatusWarn: json['vipStatusWarn'] as String?,
|
||||
themeType: (json['themeType'] as num?)?.toInt(),
|
||||
label: json['label'] == null
|
||||
? null
|
||||
: Label.fromJson(json['label'] as Map<String, dynamic>),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$VipToJson(Vip instance) => <String, dynamic>{
|
||||
'vipType': instance.vipType,
|
||||
'vipDueDate': instance.vipDueDate,
|
||||
'dueRemark': instance.dueRemark,
|
||||
'accessStatus': instance.accessStatus,
|
||||
'vipStatus': instance.vipStatus,
|
||||
'vipStatusWarn': instance.vipStatusWarn,
|
||||
'themeType': instance.themeType,
|
||||
'label': instance.label,
|
||||
};
|
||||
Reference in New Issue
Block a user