mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 08:46:38 +08:00
17 lines
466 B
Go
17 lines
466 B
Go
package vo
|
|
|
|
type Reward struct {
|
|
BaseVo
|
|
UserId uint `json:"user_id"` // 用户 ID
|
|
Username string `json:"username"`
|
|
TxId string `json:"tx_id"` // 交易ID
|
|
Amount float64 `json:"amount"` // 打赏金额
|
|
Remark string `json:"remark"` // 打赏备注
|
|
Status bool `json:"status"` // 核销状态
|
|
Exchange RewardExchange `json:"exchange"`
|
|
}
|
|
|
|
type RewardExchange struct {
|
|
Power int `json:"power"`
|
|
}
|