error.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Copyright 2019 github.com. All rights reserved.
  2. // Use of this source code is governed by github.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. NoRecordError = status.Error(10005, "查无记录")
  14. //
  15. UserPassError = status.Error(20001, "用户密码错误")
  16. UserNotExistError = status.Error(20002, "用户不存在")
  17. UserExistError = status.Error(20003, "用户已存在")
  18. ProjectExistError = status.Error(20004, "项目已存在")
  19. ProjectNotExistError = status.Error(20005, "项目不存在")
  20. DeviceExistError = status.Error(20006, "设备已存在")
  21. DeviceNotExistError = status.Error(20007, "设备不存在")
  22. ProjectNotMatchError = status.Error(20008, "项目不匹配")
  23. UserStatusError = status.Error(20009, "用户状态错误")
  24. DeviceTypeNotExistError = status.Error(20010, "设备类型不存在")
  25. DeviceAddCheckError = status.Error(20011, "设备未对接或未审批")
  26. DeviceDelStatusError = status.Error(20012, "设备当前状态不能拆机")
  27. VssStatusError = status.Error(20014, "视频状态不支持该操作")
  28. ProjectFinishError = status.Error(20015, "有项目进度未完工,请先在项目后台设置项目进度")
  29. EmailExist = status.Error(20023, "邮箱已存在")
  30. PhoneExist = status.Error(20024, "电话号码已存在")
  31. ProjectDelError = status.Error(20025, "删除项目前请先拆机")
  32. ProvincialFailed = status.Error(20026, "省厅接口调用失败")
  33. ProvincialVerifyError = status.Error(20027, "省厅正在验证数据")
  34. )