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
16 lines
251 B
package consts
|
|
|
|
// 投票活动状态
|
|
const (
|
|
VoteStatusGoing = 1 //进行中
|
|
VoteStatusEnded = 0 //已结束
|
|
)
|
|
|
|
// 投票类型
|
|
const (
|
|
VoteTypeSingle = 0 //单选
|
|
VoteTypeMultiple = 1 //多选
|
|
)
|
|
|
|
// 最大投票次数
|
|
const MAX_VOTE_TIMES = 3
|