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

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