34 lines
507 B
Go
34 lines
507 B
Go
package model
|
|
|
|
// const .
|
|
const (
|
|
MobileUserAgentFlag = "Mobile"
|
|
ProPassed = "/v3/result/%d"
|
|
|
|
MinType = 3
|
|
MaxType = 10
|
|
BlockMsg = "12小时内无法再次答题!"
|
|
|
|
DefPageSize = 10
|
|
DefPageNo = 1
|
|
NoParam = -1
|
|
|
|
OfficialType = 6
|
|
ShowOfficialRank = 31300
|
|
|
|
// ans info.
|
|
AnsSize = 4 // 题目答案数
|
|
HashSalt = "bilirqeust"
|
|
|
|
// platfrom
|
|
PlatH5 = "h5"
|
|
PlatPC = "pc"
|
|
|
|
DefBirthday1 = "1930-01-01"
|
|
DefBirthday2 = "1980-01-01"
|
|
|
|
// rank
|
|
FlagAll = "all"
|
|
FlagMonth = "m"
|
|
)
|