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
251 B

2 weeks ago
  1. package consts
  2. // 投票活动状态
  3. const (
  4. VoteStatusGoing = 1 //进行中
  5. VoteStatusEnded = 0 //已结束
  6. )
  7. // 投票类型
  8. const (
  9. VoteTypeSingle = 0 //单选
  10. VoteTypeMultiple = 1 //多选
  11. )
  12. // 最大投票次数
  13. const MAX_VOTE_TIMES = 3