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.
|
- package enum
-
- type PermissionGroupState int32
-
- const (
- PermissionGroupStateForNormal = 1
- PermissionGroupStateForDiscard = 2
- )
-
- func (gt PermissionGroupState) String() string {
- switch gt {
- case PermissionGroupStateForNormal:
- return "正常"
- case PermissionGroupStateForDiscard:
- return "废弃"
- default:
- return "未知"
- }
- }
|