:toda:
This commit is contained in:
22
global/constant/user_constant.go
Normal file
22
global/constant/user_constant.go
Normal file
@@ -0,0 +1,22 @@
|
||||
package constant
|
||||
|
||||
// UserType 用户类型
|
||||
type UserType int
|
||||
|
||||
const (
|
||||
NormalAdmin UserType = iota
|
||||
SuperAdmin
|
||||
)
|
||||
|
||||
var UserTypeMap = map[UserType]string{
|
||||
NormalAdmin: "普通管理员",
|
||||
SuperAdmin: "超级管理员",
|
||||
}
|
||||
|
||||
func (u UserType) String() string {
|
||||
if v, ok := UserTypeMap[u]; ok {
|
||||
return v
|
||||
}
|
||||
|
||||
return "未知类型"
|
||||
}
|
||||
Reference in New Issue
Block a user