diff --git a/Tiobon.Core.Api/Tiobon.Core.Model.xml b/Tiobon.Core.Api/Tiobon.Core.Model.xml
index 1f2b5ac1..75fb6b7e 100644
--- a/Tiobon.Core.Api/Tiobon.Core.Model.xml
+++ b/Tiobon.Core.Api/Tiobon.Core.Model.xml
@@ -23507,6 +23507,21 @@
面试不合适
+
+
+ 人才库
+
+
+
+
+ 回收站
+
+
+
+
+ 黑名单
+
+
无任何权限
diff --git a/Tiobon.Core.Model/Consts.cs b/Tiobon.Core.Model/Consts.cs
index 7ba38252..59621df0 100644
--- a/Tiobon.Core.Model/Consts.cs
+++ b/Tiobon.Core.Model/Consts.cs
@@ -334,6 +334,23 @@ public class Consts
/// 面试不合适
///
public const string InterviewFail = "InterviewFail";
+
+ ///
+ /// 人才库
+ ///
+ public const string Talent_Pool = "Talent_Pool";
+
+ ///
+ /// 回收站
+ ///
+ public const string Recycled = "Recycled";
+
+ ///
+ /// 黑名单
+ ///
+ public const string Blacklist = "Blacklist";
+
+
}
#endregion
}
\ No newline at end of file
diff --git a/Tiobon.Core.Services/Ghrh/Ghrh_ResumeServices.cs b/Tiobon.Core.Services/Ghrh/Ghrh_ResumeServices.cs
index 3d936fa8..8a2c758d 100644
--- a/Tiobon.Core.Services/Ghrh/Ghrh_ResumeServices.cs
+++ b/Tiobon.Core.Services/Ghrh/Ghrh_ResumeServices.cs
@@ -560,6 +560,9 @@ public class Ghrh_ResumeServices : BaseServices x.Mobile == input.Mobile);
+ if (resume != null && resume.Status == DIC_INTERVIEW_ORDER_STATUS.Blacklist)
+ return ServiceResult.OprateFailed("无法登录!");
+
if (resume == null)
id = await base.Add(new InsertGhrh_ResumeInput()
{
@@ -582,6 +585,11 @@ public class Ghrh_ResumeServices : BaseServices.OprateSuccess("查询成功", obj);
diff --git a/Tiobon.Core/Tiobon.Core.Model.xml b/Tiobon.Core/Tiobon.Core.Model.xml
index 1f2b5ac1..75fb6b7e 100644
--- a/Tiobon.Core/Tiobon.Core.Model.xml
+++ b/Tiobon.Core/Tiobon.Core.Model.xml
@@ -23507,6 +23507,21 @@
面试不合适
+
+
+ 人才库
+
+
+
+
+ 回收站
+
+
+
+
+ 黑名单
+
+
无任何权限