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.
14 lines
983 B
14 lines
983 B
package models
|
|
|
|
//抽奖的中奖名单
|
|
//type LotteryDrawWinner struct {
|
|
// Id int64 `json:"id"`
|
|
// LotteryDrawRuleId int64 `json:"lottery_draw_rule_id" description:"红包轮次的id"`
|
|
// LotteryDrawRuleLadderId int64 `json:"lottery_draw_rule_ladder_id" description:"抽奖奖品的id"`
|
|
// LotteryDrawRuleLadder *LotteryDrawRuleLadder `json:"lottery_draw_rule_ladder" xorm:"-" description:"奖品得信息"`
|
|
// UserId int64 `json:"user_id" description:"用户表得id"`
|
|
// User *User `json:"user" xorm:"-" description:"用户信息"`
|
|
// IsDelete bool `json:"is_delete" xorm:"default(0)"`
|
|
// CreatedAt time.Time `json:"-" xorm:"created" description:"创建时间"`
|
|
// UpdatedAt time.Time `json:"-" xorm:"updated" description:"更新时间"`
|
|
//}
|