123456789101112131415161718192021222324252627 |
- package err
- const (
- ParamInvalid = "请求参数无效"
- FindSuccess = "查询成功"
- UserAlreadyExists = "用户已存在"
- UserRegisterSuccess = "用户注册成功"
- UserRegisterFailed = "用户注册失败"
- UserLoginSuccess = "登录成功"
- UserLoginFailed = "用户名或密码错误"
- UserNotExists = "用户不存在"
- UserPasswordResetError = "用户密码重置失败"
- UserPasswordResetSuccess = "用户密码重置成功"
- UserPasswordChangeSuccess = "用户密码修改成功"
- UserPasswordChangeError = "用户密码修改失败"
- UserOldPasswordError = "用户原密码错误"
- SendMessageError = "消息发送失败"
- SocketCloseError = "Socket关闭异常:"
- DeviceConnectSuccess = "设备连接成功"
- WriteDataSuccess = "写入数据成功"
- DeviceConnectError = "设备连接失败"
- OpenChannelError = "打开设备通道失败"
- SetDeviceTimeFailed = "授时指令发送失败"
- BindUserFailed = "绑定用户指令发送失败"
- StartCollocateFailed = "开始收集指令发送失败"
- StartTransFailed = "开始传送指令发送失败"
- )
|