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.
33 lines
885 B
33 lines
885 B
10 months ago
|
import 'package:huixiang/generated/json/base/json_field.dart';
|
||
|
import 'package:huixiang/generated/json/vip_counts_info.g.dart';
|
||
|
import 'dart:convert';
|
||
|
export 'package:huixiang/generated/json/vip_counts_info.g.dart';
|
||
|
|
||
|
@JsonSerializable()
|
||
|
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);
|
||
|
|
||
|
@override
|
||
|
String toString() {
|
||
|
return jsonEncode(this);
|
||
|
}
|
||
|
}
|