|
|
@@ -3,7 +3,8 @@ package md |
|
|
|
const EggAppExchange = "egg.app" |
|
|
|
|
|
|
|
const ( |
|
|
|
EggFinWithdrawApply = "egg_fin_withdraw_apply" // 提现申请 |
|
|
|
EggFinWithdrawApply = "egg_fin_withdraw_apply" // 提现申请 |
|
|
|
EggFinWithdrawApplyError = "egg_fin_deposit_apply_error" |
|
|
|
) |
|
|
|
|
|
|
|
type EggFinWithdrawApplyData struct { |
|
|
@@ -25,3 +26,9 @@ type EggFinWithdrawApplyData struct { |
|
|
|
UpdateAt string `json:"update_at"` |
|
|
|
CreateAt string `json:"create_at"` |
|
|
|
} |
|
|
|
|
|
|
|
type EggFinWithdrawApplyErrorData struct { |
|
|
|
EggFinWithdrawApplyData EggFinWithdrawApplyData `json:"egg_fin_withdraw_apply_data"` // 原始申请数据 |
|
|
|
ErrorInfo string `json:"error_info"` // 错误信息 |
|
|
|
Ext []byte `json:"ext"` // 如果尝试解析失败,则将整个结构体放入 |
|
|
|
} |