namespace TProduct.Model { /// /// 登录状态枚举 /// public enum eLoginStatus { 登录成功 = 0, 用户不存在 = -1, 密码错误 = -2, 用户已停用 = -3, 上级用户已停用 = -4, 登录失败 = -99, } }