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