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.
29 lines
717 B
29 lines
717 B
import 'package:json_annotation/json_annotation.dart'; |
|
|
|
part 'vip_counts_info.g.dart'; |
|
|
|
@JsonSerializable(explicitToJson: true) |
|
class VipCountsInfo { |
|
String? dayMoney = ''; |
|
String? yesterdayMoney = ''; |
|
String? paySum = ''; |
|
String? yesterdayPaySum = ''; |
|
String? rechargeMoney = ''; |
|
String? weekRechargeMoney = ''; |
|
String? lastWeekRechargeMoney = ''; |
|
int? orderNum = 0; |
|
int? yesterdayOrderNum = 0; |
|
int? memberNum = 0; |
|
int? lastWeekMemberNum = 0; |
|
int? weekMemberNum = 0; |
|
int? newMemberNum = 0; |
|
int? yesterdayNewMemberNum = 0; |
|
|
|
VipCountsInfo(); |
|
|
|
factory VipCountsInfo.fromJson(Map<String, dynamic> json) => _$VipCountsInfoFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => _$VipCountsInfoToJson(this); |
|
|
|
|
|
} |