From 9598bc711517dce38b493c151b1ef0243ac182a5 Mon Sep 17 00:00:00 2001 From: xiaochanghai Date: Fri, 29 Nov 2024 14:04:08 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=BE=85=E6=8E=A8=E8=8D=90?= =?UTF-8?q?=20=E4=BA=BA=E6=89=8D=E5=BA=93=20=E5=9B=9E=E6=94=B6=E7=AB=99=20?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E5=8F=AF=E4=BF=AE=E6=94=B9=EF=BC=8C=E5=AD=98?= =?UTF-8?q?=E5=9C=A8=E4=BA=8E=E9=BB=91=E5=90=8D=E5=8D=95=E7=9A=84=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E7=9B=B4=E6=8E=A5=E6=8F=90=E7=A4=BA=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E7=99=BB=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tiobon.Core.Api/Tiobon.Core.Model.xml | 15 +++++++++++++++ Tiobon.Core.Model/Consts.cs | 17 +++++++++++++++++ .../Ghrh/Ghrh_ResumeServices.cs | 8 ++++++++ Tiobon.Core/Tiobon.Core.Model.xml | 15 +++++++++++++++ 4 files changed, 55 insertions(+) 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 @@ 面试不合适 + + + 人才库 + + + + + 回收站 + + + + + 黑名单 + + 无任何权限