30 lines
396 B
Go
30 lines
396 B
Go
package model
|
|
|
|
const (
|
|
Debug = "debug"
|
|
Release = "release"
|
|
)
|
|
|
|
const (
|
|
Phone = 0
|
|
Email = 1
|
|
Address = 2
|
|
)
|
|
|
|
const (
|
|
ParamSvcUrl = "serviceUrl"
|
|
ParamCodeType = "codetype"
|
|
ParamMobile = "mobile"
|
|
ParamEmail = "email"
|
|
ParamMsg = "msg"
|
|
ParamTicket = "ticket"
|
|
ParamBizId = "biz"
|
|
ParamCode = "code"
|
|
)
|
|
|
|
const (
|
|
Quick = "quick"
|
|
Bind = "bind"
|
|
Export = "export"
|
|
)
|