error.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Copyright 2019 getensh.com. All rights reserved.
  2. // Use of this source code is governed by getensh.com.
  3. package errors
  4. import (
  5. "google.golang.org/grpc/status"
  6. )
  7. var (
  8. // 通用错误
  9. SystemError = status.Error(10001, "系统错误")
  10. ServiceError = status.Error(10002, "内部服务错误")
  11. ParamsError = status.Error(10003, "参数错误")
  12. DataBaseError = status.Error(10004, "数据库错误")
  13. RedisError = status.Error(10005, "Redis错误")
  14. VendorError = status.Error(10006, "三方错误")
  15. ElasticError = status.Error(10007, "ElasticSearch 错误")
  16. NoTokenError = status.Error(10008, "没有token")
  17. TokenExpiredError = status.Error(10009, "token已过期")
  18. TokenFailedError = status.Error(10010, "token错误")
  19. DistributeIdError = status.Error(10011, "分布式id错误")
  20. ErrRecordNotFound = status.Error(10012, "数据不存在")
  21. UserGroupNotExist = status.Error(30201, "用户组不存在")
  22. UserExist = status.Error(30202, "用户已存在")
  23. PasswordError = status.Error(30203, "密码错误")
  24. OrganizationNotExist = status.Error(30204, "机构不存在")
  25. OrganizationExist = status.Error(30205, "机构已存在")
  26. RbacNodeNotExist = status.Error(30206, "权限基础节点不存在")
  27. UserNotExist = status.Error(30203, "用户不存在")
  28. UserNotInRightZone = status.Error(30301, "目标用户不在您的管辖区域")
  29. ZoneNotInRightZone = status.Error(30301, "目标区域不在您的管辖区域")
  30. //ZonePermissionError = status.Error(30301, "无区域操作权限")
  31. NotSuperGroupError = status.Error(30302, "非超管组人员无法进行该操作")
  32. SuperError = status.Error(30302, "无法修改超级用户")
  33. NotSuperError = status.Error(30302, "非超级管理员无法操作该角色")
  34. //GroupPermissionError = status.Error(30302, "无操作权限")
  35. )