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.
|
|
package models
//摇红包中奖名单
//type ShakeRedEnvelopeWinner struct {
// Id int64 `json:"id"`
// ShakeRedEnvelopeRuleId int64 `json:"shake_red_envelope_rule_id" description:"红包轮次的id"`
// Amount float64 `json:"amount" description:"金额"`
// UserId int64 `json:"user_id" description:"用户表得id"`
// User *User `json:"user" xorm:"-" description:"用户信息"`
// IsOpen bool `json:"is_open"`
// IsDelete bool `json:"is_delete" xorm:"default(0)" description:"是否删除"`
// CreatedAt time.Time `json:"created_at" xorm:"created" description:"创建时间"`
// UpdatedAt time.Time `json:"updated_at" xorm:"updated" description:"更新时间"`
//}
|