You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.8 KiB

package response
type BillData struct {
Income float64 `json:"income"` // 收入金额
IncomeCount int64 `json:"income_count"` // 收入笔数
Expend float64 `json:"expend"` // 支出金额
ExpendCount int64 `json:"expend_count"` // 支出笔数
}
type InfluenceWithdrawalData struct {
Balance float64 `json:"balance"` // 账户余额
Unexamined float64 `json:"unexamined"` // 待处理金额
UnexaminedCount int64 `json:"unexamined_count"` // 待处理笔数
}
type SellerWithdrawalData struct {
Balance float64 `json:"balance"` // 余额账户
Fund float64 `json:"fund"` // 营销账户
Unexamined float64 `json:"unexamined"` // 待处理金额
UnexaminedCount int64 `json:"unexamined_count"` // 待处理笔数
}
type SellerFundData struct {
Expend float64 `json:"expend"` // 支出金额
ExpendCount int64 `json:"expend_count"` // 支出笔数
Lock float64 `json:"lock"` // 锁定金额
LockCount int64 `json:"lock_count"` // 锁定笔数
}
type BkbData struct {
Turnover float64 `json:"turnover"` // 交易额
Earn float64 `json:"earn"` // 抽成总额
Reward float64 `json:"reward"` //
Balance float64 `json:"balance"` // 余额账户
Unexamined float64 `json:"unexamined"` // 待处理金额
UnexaminedCount int64 `json:"unexamined_count"` // 待处理笔数
}
type AdminFundData struct {
Expend float64 `json:"expend"` // 支出金额
ExpendCount int64 `json:"expend_count"` // 支出笔数
Recharge float64 `json:"recharge"` // 充值金额
RechargeCount int64 `json:"recharge_count"` // 充值笔数
}