在设备绑定逻辑中添加对设备绑定数量的限制检查,当超过限制时返回特定错误码 同时在用户注册、登录等流程中处理设备绑定数量超限的错误情况
This commit is contained in:
+3
-2
@@ -114,8 +114,9 @@ const (
|
||||
TelephoneError uint32 = 90014
|
||||
)
|
||||
const (
|
||||
DeviceNotExist uint32 = 90017
|
||||
UseridNotMatch uint32 = 90018
|
||||
DeviceNotExist uint32 = 90017
|
||||
UseridNotMatch uint32 = 90018
|
||||
DeviceBindLimitExceeded uint32 = 90019
|
||||
)
|
||||
|
||||
const (
|
||||
|
||||
Reference in New Issue
Block a user