模型库
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.

enum_permission_group.go 336 B

1 month ago
12345678910111213141516171819
  1. package enum
  2. type PermissionGroupState int32
  3. const (
  4. PermissionGroupStateForNormal = 1
  5. PermissionGroupStateForDiscard = 2
  6. )
  7. func (gt PermissionGroupState) String() string {
  8. switch gt {
  9. case PermissionGroupStateForNormal:
  10. return "正常"
  11. case PermissionGroupStateForDiscard:
  12. return "废弃"
  13. default:
  14. return "未知"
  15. }
  16. }