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.
 
 
 

25 lines
314 B

package model
// platform
const (
PlatformQQ = 1
PlatformWEIBO = 2
PlatformAll = "all"
PlatformQQStr = "qq"
PlatformWEIBOStr = "weibo"
)
// business
const (
BusinessMain = 10
BusinessMall = 20
)
// operate
const (
OperateBind = 1
OperateUnbind = 2
OperateDelete = 3
OperateLogin = 4
)