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.
13 lines
203 B
13 lines
203 B
package consts
|
|
|
|
// 投票活动状态
|
|
const (
|
|
VoteStatusGoing = 1 //进行中
|
|
VoteStatusEnded = 0 //已结束
|
|
)
|
|
|
|
// 投票类型
|
|
const (
|
|
VoteTypeSingle = 0 //单选
|
|
VoteTypeMultiple = 1 //多选
|
|
)
|