namespace Znyc.Recruitment.Admin.Commons.Const { /// /// 返回 /// public static class ReturnConst { /// /// /// public const string Password_Error = "密码错误,请重新输入。"; /// /// /// public const string User_Not_Exist = "系统不存在该用户,请重新确认。"; /// /// /// public const string User_Disable = "该用户已被禁用,请联系管理员。"; /// /// 审批结果-通过 /// public const string Approved = "审核通过"; /// /// 备注 /// public const string Approved_Note = "欢迎点击转发分享"; /// /// 审批结果-失败 /// public const string Audit_Failed = "审核失败"; /// /// /// public const string Year = "年"; /// /// /// public const string Month = "月"; /// /// /// public const string Day = "日"; /// /// 审批类型-求职失败 /// public const string Job_Audit_Failed = "发布的求职信息审核失败"; /// /// 审批类型-招聘失败 /// public const string Recruit_Audit_Failed = "发布的招聘信息审核失败"; /// /// 审批类型-求职通过 /// public const string Job_Approved = "您的求职信息审核通过"; /// /// 审批类型-招聘通过 /// public const string Recruit_Approved = "您的招聘信息审核通过"; /// /// 审批类型-实名认证通过 /// public const string RealName_Approved = "您的实名认证信息认证成功"; /// /// 审批类型-实名认证失败 /// public const string RealName_Audit_Failed = "您的实名认证信息认证失败"; /// /// 结束时间必须大于开始时间 /// public const string Time_Error = "结束时间必须大于开始时间!"; /// /// 结束时间必须大于当前时间 /// public const string EndTime_Error = "结束时间必须大于当前时间!"; /// /// 时间重叠 /// public const string Time_Overlap = "请检查开始日期时间和结束日期时间!存在重叠时间!"; /// /// 信息不存在 /// public const string Not_Exist = "该信息不存在!"; /// /// 活动类型进行中 /// public const string Activity_Ongoing = "该活动类型正在进行中"; } }