补充提交
This commit is contained in:
parent
3bd2a5e56a
commit
b823b25199
@ -1,9 +1,4 @@
|
||||
class BuyRecordListEntity {
|
||||
int? errorCode;
|
||||
String? description;
|
||||
String? errorMsg;
|
||||
BuyRecordListData? data;
|
||||
|
||||
BuyRecordListEntity(
|
||||
{this.errorCode, this.description, this.errorMsg, this.data});
|
||||
|
||||
@ -14,6 +9,10 @@ class BuyRecordListEntity {
|
||||
data =
|
||||
json['data'] != null ? BuyRecordListData.fromJson(json['data']) : null;
|
||||
}
|
||||
int? errorCode;
|
||||
String? description;
|
||||
String? errorMsg;
|
||||
BuyRecordListData? data;
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = <String, dynamic>{};
|
||||
@ -28,11 +27,6 @@ class BuyRecordListEntity {
|
||||
}
|
||||
|
||||
class BuyRecordListData {
|
||||
int? pageNo;
|
||||
int? pageSize;
|
||||
int? total;
|
||||
List<BuyRecordItem>? buyRecordlist;
|
||||
|
||||
BuyRecordListData(
|
||||
{this.pageNo, this.pageSize, this.total, this.buyRecordlist});
|
||||
|
||||
@ -47,6 +41,10 @@ class BuyRecordListData {
|
||||
});
|
||||
}
|
||||
}
|
||||
int? pageNo;
|
||||
int? pageSize;
|
||||
int? total;
|
||||
List<BuyRecordItem>? buyRecordlist;
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = <String, dynamic>{};
|
||||
@ -61,21 +59,6 @@ class BuyRecordListData {
|
||||
}
|
||||
|
||||
class BuyRecordItem {
|
||||
int? id;
|
||||
int? userId;
|
||||
String? orderNumber;
|
||||
String? type;
|
||||
int? recordType;
|
||||
int? smsCount;
|
||||
int? emailCount;
|
||||
int? cloudauthCount;
|
||||
int? vipLockCount;
|
||||
int? vipYear;
|
||||
int? isApply;
|
||||
String? money;
|
||||
String? createdAt;
|
||||
String? updatedAt;
|
||||
|
||||
BuyRecordItem(
|
||||
{this.id,
|
||||
this.userId,
|
||||
@ -108,6 +91,20 @@ class BuyRecordItem {
|
||||
createdAt = json['created_at'];
|
||||
updatedAt = json['updated_at'];
|
||||
}
|
||||
int? id;
|
||||
int? userId;
|
||||
String? orderNumber;
|
||||
String? type;
|
||||
int? recordType;
|
||||
int? smsCount;
|
||||
int? emailCount;
|
||||
int? cloudauthCount;
|
||||
int? vipLockCount;
|
||||
int? vipYear;
|
||||
int? isApply;
|
||||
String? money;
|
||||
String? createdAt;
|
||||
String? updatedAt;
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = <String, dynamic>{};
|
||||
|
||||
@ -1,14 +1,14 @@
|
||||
class UseRecordListArg {
|
||||
static Map<String, String> sms = {
|
||||
static Map<String, String> sms = <String, String>{
|
||||
'type': 'sms',
|
||||
};
|
||||
static Map<String, String> vip = {
|
||||
static Map<String, String> vip = <String, String>{
|
||||
'type': 'vip',
|
||||
};
|
||||
static Map<String, String> email = {
|
||||
static Map<String, String> email = <String, String>{
|
||||
'type': 'email',
|
||||
};
|
||||
static Map<String, String> cloudauth = {
|
||||
static Map<String, String> cloudauth = <String, String>{
|
||||
'type': 'cloudauth',
|
||||
};
|
||||
}
|
||||
|
||||
@ -1,9 +1,4 @@
|
||||
class UseRecordListEntity {
|
||||
int? errorCode;
|
||||
String? description;
|
||||
String? errorMsg;
|
||||
Data? data;
|
||||
|
||||
UseRecordListEntity(
|
||||
{this.errorCode, this.description, this.errorMsg, this.data});
|
||||
|
||||
@ -13,6 +8,10 @@ class UseRecordListEntity {
|
||||
errorMsg = json['errorMsg'];
|
||||
data = json['data'] != null ? Data.fromJson(json['data']) : null;
|
||||
}
|
||||
int? errorCode;
|
||||
String? description;
|
||||
String? errorMsg;
|
||||
Data? data;
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = <String, dynamic>{};
|
||||
@ -27,11 +26,6 @@ class UseRecordListEntity {
|
||||
}
|
||||
|
||||
class Data {
|
||||
int? pageNo;
|
||||
int? pageSize;
|
||||
int? total;
|
||||
List<UseItemData>? recordList;
|
||||
|
||||
Data({this.pageNo, this.pageSize, this.total, this.recordList});
|
||||
|
||||
Data.fromJson(Map<String, dynamic> json) {
|
||||
@ -45,6 +39,10 @@ class Data {
|
||||
});
|
||||
}
|
||||
}
|
||||
int? pageNo;
|
||||
int? pageSize;
|
||||
int? total;
|
||||
List<UseItemData>? recordList;
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = <String, dynamic>{};
|
||||
@ -59,28 +57,6 @@ class Data {
|
||||
}
|
||||
|
||||
class UseItemData {
|
||||
int? id;
|
||||
int? userId;
|
||||
String? type;
|
||||
String? receiverAccount;
|
||||
String? realName;
|
||||
int? authStatus;
|
||||
int? lockId;
|
||||
String? lockName;
|
||||
int? consCount;
|
||||
String? createdAt;
|
||||
String? updatedAt;
|
||||
String? useDate;
|
||||
String? orderNumber;
|
||||
int? recordType;
|
||||
int? smsCount;
|
||||
int? emailCount;
|
||||
int? cloudauthCount;
|
||||
int? vipLockCount;
|
||||
int? vipYear;
|
||||
String? amount;
|
||||
String? buyDate;
|
||||
|
||||
UseItemData(
|
||||
{this.id,
|
||||
this.userId,
|
||||
@ -127,6 +103,27 @@ class UseItemData {
|
||||
amount = json['amount'];
|
||||
buyDate = json['buyDate'];
|
||||
}
|
||||
int? id;
|
||||
int? userId;
|
||||
String? type;
|
||||
String? receiverAccount;
|
||||
String? realName;
|
||||
int? authStatus;
|
||||
int? lockId;
|
||||
String? lockName;
|
||||
int? consCount;
|
||||
String? createdAt;
|
||||
String? updatedAt;
|
||||
String? useDate;
|
||||
String? orderNumber;
|
||||
int? recordType;
|
||||
int? smsCount;
|
||||
int? emailCount;
|
||||
int? cloudauthCount;
|
||||
int? vipLockCount;
|
||||
int? vipYear;
|
||||
String? amount;
|
||||
String? buyDate;
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = <String, dynamic>{};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user