mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-05 13:47:47 +08:00
14 lines
276 B
Go
14 lines
276 B
Go
package model
|
||
|
||
// 用户打赏
|
||
|
||
type Reward struct {
|
||
BaseModel
|
||
UserId uint // 用户 ID
|
||
TxId string // 交易ID
|
||
Amount float64 // 打赏金额
|
||
Remark string // 打赏备注
|
||
Status bool // 核销状态
|
||
Exchange string // 众筹兑换详情,JSON
|
||
}
|