f ‘部分退款’
This commit is contained in:
@@ -326,12 +326,14 @@ type (
|
||||
SubWithdrawReward float64 `json:"sub_withdraw_reward"`
|
||||
}
|
||||
Commission {
|
||||
OrderId string `json:"order_id"` // 订单号
|
||||
ProductName string `json:"product_name"`
|
||||
Amount float64 `json:"amount"`
|
||||
Status int64 `json:"status"` // 状态:0-已结算,1-冻结中,2-已退款
|
||||
CreateTime string `json:"create_time"`
|
||||
QueryParams map[string]interface{} `json:"query_params,omitempty"`
|
||||
OrderId string `json:"order_id"` // 订单号
|
||||
ProductName string `json:"product_name"`
|
||||
Amount float64 `json:"amount"` // 原始佣金金额
|
||||
RefundedAmount float64 `json:"refunded_amount"` // 已退款佣金金额
|
||||
NetAmount float64 `json:"net_amount"` // 剩余净佣金金额 = amount - refunded_amount
|
||||
Status int64 `json:"status"` // 状态:0-已结算,1-冻结中,2-已退款
|
||||
CreateTime string `json:"create_time"`
|
||||
QueryParams map[string]interface{} `json:"query_params,omitempty"`
|
||||
}
|
||||
GetCommissionReq {
|
||||
Page int64 `form:"page"` // 页码
|
||||
|
||||
Reference in New Issue
Block a user