liujiandao
2023-11-22 3b474a056ea35196ce5d2a5f297eafa11295a95d
1
2
3
4
5
6
7
8
9
package constvar
 
type UserType int
 
const (
    UserTypeSuper   UserType = iota + 1 // 超级管理员
    UserTypePrimary                     // 主账户
    UserTypeSub                         // 子账户
)