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

5 years ago
  1. package models
  2. //摇红包中奖名单
  3. //type ShakeRedEnvelopeWinner struct {
  4. // Id int64 `json:"id"`
  5. // ShakeRedEnvelopeRuleId int64 `json:"shake_red_envelope_rule_id" description:"红包轮次的id"`
  6. // Amount float64 `json:"amount" description:"金额"`
  7. // UserId int64 `json:"user_id" description:"用户表得id"`
  8. // User *User `json:"user" xorm:"-" description:"用户信息"`
  9. // IsOpen bool `json:"is_open"`
  10. // IsDelete bool `json:"is_delete" xorm:"default(0)" description:"是否删除"`
  11. // CreatedAt time.Time `json:"created_at" xorm:"created" description:"创建时间"`
  12. // UpdatedAt time.Time `json:"updated_at" xorm:"updated" description:"更新时间"`
  13. //}