using System; using System.Collections.Generic; using System.ComponentModel; namespace WMS.Info { /// /// 描 述:接口响应码 /// [Description("接口响应码")] public enum EResponseCode { /// /// 登录时间限制 /// [Description("登录时间限制")] FilterTimeError = -6, /// /// 登录IP限制 /// [Description("登录IP限制")] FilterIPError = -5, /// /// 密码初始化 /// [Description("密码初始化")] PwdInit = -4, /// /// 密码过期 /// [Description("密码过期")] PwdExpiration = -3, /// /// 密码过期 /// [Description("登录超时")] LoginTimeout = -2, /// /// 异常清息 /// [Description("异常清息")] Exception = -1, /// /// 失败清息 /// [Description("失败清息")] Fail = 0, /// /// 成功消息 /// [Description("成功消息")] Success = 1, /// /// 没有登录信息 /// nologin = 410 } }