43 lines
1.5 KiB
C#
43 lines
1.5 KiB
C#
|
|
namespace LMS.Common.Enums
|
|||
|
|
{
|
|||
|
|
public static class ResponseString
|
|||
|
|
{
|
|||
|
|
#region 用户相关
|
|||
|
|
public const string UndefinedLoginType = "未知的登录类型";
|
|||
|
|
|
|||
|
|
public const string UserNotFound = "用户未找到,请先注册";
|
|||
|
|
|
|||
|
|
public const string UserIsLockedOut = "用户已被锁定,请联系管理员";
|
|||
|
|
|
|||
|
|
public const string UserPasswordError = "检查账号和密码是否正确";
|
|||
|
|
|
|||
|
|
public const string UserLoginOut = "用户已退出,请重新登录";
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
public const string UserLogin = "检查账号和密码是否正确";
|
|||
|
|
public const string UserEmailNotFound = "未找到对应用户名/邮箱的账号";
|
|||
|
|
public const string UserStatusError = "用户的状态错误";
|
|||
|
|
|
|||
|
|
public const string MachineStatusNotFoundOrStatusIsNot = "未找到对应的机器码或者是机器码已过期,请联系开发或客服";
|
|||
|
|
|
|||
|
|
public const string SystemError = "系统错误";
|
|||
|
|
|
|||
|
|
public const string ParameterError = "参数错误";
|
|||
|
|
|
|||
|
|
public const string InvalidOptions = "无效的操作";
|
|||
|
|
|
|||
|
|
public const string IdDateNotFound = "指定ID的数据没有找到";
|
|||
|
|
|
|||
|
|
public const string DataExist = "数据已存在,不可新增";
|
|||
|
|
|
|||
|
|
public const string HasRelationship = "数据存在关联,请先删除关联";
|
|||
|
|
|
|||
|
|
public const string DataNotExist = "数据不存在,请检查";
|
|||
|
|
|
|||
|
|
public const string NotPermissionAction = "没有执行该操作的权限";
|
|||
|
|
|
|||
|
|
public const string ForwardFail = "转发失败";
|
|||
|
|
}
|
|||
|
|
}
|