互动
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

5 years ago
  1. package models
  2. //抽奖的中奖名单
  3. //type LotteryDrawWinner struct {
  4. // Id int64 `json:"id"`
  5. // LotteryDrawRuleId int64 `json:"lottery_draw_rule_id" description:"红包轮次的id"`
  6. // LotteryDrawRuleLadderId int64 `json:"lottery_draw_rule_ladder_id" description:"抽奖奖品的id"`
  7. // LotteryDrawRuleLadder *LotteryDrawRuleLadder `json:"lottery_draw_rule_ladder" xorm:"-" description:"奖品得信息"`
  8. // UserId int64 `json:"user_id" description:"用户表得id"`
  9. // User *User `json:"user" xorm:"-" description:"用户信息"`
  10. // IsDelete bool `json:"is_delete" xorm:"default(0)"`
  11. // CreatedAt time.Time `json:"-" xorm:"created" description:"创建时间"`
  12. // UpdatedAt time.Time `json:"-" xorm:"updated" description:"更新时间"`
  13. //}