111
This commit is contained in:
@@ -82,6 +82,7 @@ class OrderFund {
|
||||
// 提现状态: 1=待审批, 2=已完成, 3=已驳回, 4=已取消, 5=待财务审核
|
||||
final int? walletId; // 冷钱包ID(充值)
|
||||
final String? walletAddress; // 钱包地址(充值/提现)
|
||||
final String? network; // 提现网络类型
|
||||
final String? withdrawContact; // 提现联系方式
|
||||
final String remark;
|
||||
final String? rejectReason;
|
||||
@@ -102,6 +103,7 @@ class OrderFund {
|
||||
required this.status,
|
||||
this.walletId,
|
||||
this.walletAddress,
|
||||
this.network,
|
||||
this.withdrawContact,
|
||||
required this.remark,
|
||||
this.rejectReason,
|
||||
@@ -124,6 +126,7 @@ class OrderFund {
|
||||
status: json['status'] as int? ?? 1,
|
||||
walletId: json['walletId'] as int?,
|
||||
walletAddress: json['walletAddress'] as String?,
|
||||
network: json['network'] as String?,
|
||||
withdrawContact: json['withdrawContact'] as String?,
|
||||
remark: json['remark']?.toString() ?? '',
|
||||
rejectReason: json['rejectReason'] as String?,
|
||||
@@ -167,7 +170,7 @@ class OrderFund {
|
||||
case 1:
|
||||
return '待审批';
|
||||
case 2:
|
||||
return '已完成';
|
||||
return '已出款';
|
||||
case 3:
|
||||
return '已驳回';
|
||||
case 4:
|
||||
|
||||
Reference in New Issue
Block a user