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.
16 lines
1022 B
16 lines
1022 B
package models
|
|
|
|
//拔河规则
|
|
//type BaheRule struct {
|
|
// Id int64 `json:"id"`
|
|
// BaheActivityId int64 `json:"bahe_activity_id" description:"拔河轮次的id, 对应bahe_activity的主键id"`
|
|
// AreaId int64 `json:"area_id" description:"地区id"`
|
|
// RandomTeam string `json:"random_team" description:"[开启,关闭]随机组队模式"`
|
|
// MaxMoreCode string `json:"max_more_code" description:"[开启,关闭]大屏多二维码模式"`
|
|
// H5Choose string `json:"h_5_choose" description:"[开启,关闭]h5挑选队伍"`
|
|
// BaheStatus string `json:"bahe_status" description:"拔河活动状态[未开始,进行中,结束]"`
|
|
// UseTimes int64 `json:"use_times" description:"使用次数"`
|
|
// IsDelete bool `json:"is_delete" xorm:"default(0)" description:"是否删除"`
|
|
// CreatedAt time.Time `json:"-" xorm:"created" description:"创建时间"`
|
|
// UpdatedAt time.Time `json:"-" xorm:"updated" description:"更新时间"`
|
|
//}
|