zhangqian
2023-08-15 f5461743f6542e6b4a793117e05777769f9c3377
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package constvar
 
type UserStatus int
 
type UserType int
 
const (
    UserTypeSuper   UserType = iota + 1 // 超级管理员
    UserTypePrimary                     // 主账户
    UserTypeSub                         // 子账户
)
 
const (
    ApsServerHost = ""
)