From a6e309a9832df4b67a00c56d3af58d15051faf16 Mon Sep 17 00:00:00 2001 From: xiaochanghai Date: Tue, 3 Dec 2024 10:19:04 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9D=A2=E8=AF=95=E8=AF=84=E4=BC=B0=E8=AE=BE?= =?UTF-8?q?=E5=AE=9A=E9=A1=B5=E9=9D=A2=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Model/Tiobon.Web.pdm | 14 +- Tiobon.Core.Api/Tiobon.Core.Model.xml | 17 +- .../Base/Ghrh/Ghrh_AssessConfig.Dto.Base.cs | 14 +- .../Models/Ghrh/Ghrh_AssessConfig.cs | 14 +- .../View/Ghrh/Ghrh_AssessConfig.Dto.View.cs | 24 +- .../Ghrh/Ghrh_AssessConfigServices.cs | 12 + Tiobon.Core/Tiobon.Core.Model.xml | 210 ++++++++++++++++++ Tiobon.Core/Tiobon.Core.xml | 5 + 8 files changed, 274 insertions(+), 36 deletions(-) diff --git a/Model/Tiobon.Web.pdm b/Model/Tiobon.Web.pdm index 23c5d4c4..2a95838b 100644 --- a/Model/Tiobon.Web.pdm +++ b/Model/Tiobon.Web.pdm @@ -1,5 +1,5 @@ - + @@ -42544,10 +42544,10 @@ Ghra_staff_InsureBase 78AE16F5-8CB4-4A95-A712-621A7C768FD5 指标分类 -ConfigClass +ItemClass 1733131926 Administrator -1733132127 +1733188810 Administrator 指标分类 nvarchar(32) @@ -42556,10 +42556,10 @@ Ghra_staff_InsureBase C860200C-6507-42FE-965A-DB15B49381BA 指标名称 -ConfigName +ItemName 1733131926 Administrator -1733132127 +1733188813 Administrator 指标名称 nvarchar(32) @@ -42568,10 +42568,10 @@ Ghra_staff_InsureBase 772EE712-1D7B-43AE-B86D-3E7EE74FED53 指标名称_英文 -ConfigName_EN +ItemName_EN 1733131926 Administrator -1733132115 +1733188815 Administrator 指标名称_英文 nvarchar(32) diff --git a/Tiobon.Core.Api/Tiobon.Core.Model.xml b/Tiobon.Core.Api/Tiobon.Core.Model.xml index 36e0f215..22e8ec11 100644 --- a/Tiobon.Core.Api/Tiobon.Core.Model.xml +++ b/Tiobon.Core.Api/Tiobon.Core.Model.xml @@ -5970,17 +5970,17 @@ 面试评估设定 (Dto.Base) - + 指标分类 - + 指标名称 - + 指标名称_英文 @@ -17101,17 +17101,17 @@ 面试评估设定 (Model) - + 指标分类 - + 指标名称 - + 指标名称_英文 @@ -22787,6 +22787,11 @@ 修改信息 + + + 指标分类 + + 招聘参数配置(Dto.View1) diff --git a/Tiobon.Core.Model/Base/Ghrh/Ghrh_AssessConfig.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghrh/Ghrh_AssessConfig.Dto.Base.cs index 52dd0d4a..d3fd0765 100644 --- a/Tiobon.Core.Model/Base/Ghrh/Ghrh_AssessConfig.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghrh/Ghrh_AssessConfig.Dto.Base.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/12/2 17:37:30 SimonHsiao 初版 +*V0.01 2024/12/3 9:21:44 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -26,20 +26,20 @@ public class Ghrh_AssessConfigBase /// /// 指标分类 /// - [Display(Name = "ConfigClass"), Description("指标分类"), MaxLength(32, ErrorMessage = "指标分类 不能超过 32 个字符")] - public string ConfigClass { get; set; } + [Display(Name = "ItemClass"), Description("指标分类"), MaxLength(32, ErrorMessage = "指标分类 不能超过 32 个字符")] + public string ItemClass { get; set; } /// /// 指标名称 /// - [Display(Name = "ConfigName"), Description("指标名称"), MaxLength(32, ErrorMessage = "指标名称 不能超过 32 个字符")] - public string ConfigName { get; set; } + [Display(Name = "ItemName"), Description("指标名称"), MaxLength(32, ErrorMessage = "指标名称 不能超过 32 个字符")] + public string ItemName { get; set; } /// /// 指标名称_英文 /// - [Display(Name = "ConfigName_EN"), Description("指标名称_英文"), MaxLength(32, ErrorMessage = "指标名称_英文 不能超过 32 个字符")] - public string ConfigName_EN { get; set; } + [Display(Name = "ItemName_EN"), Description("指标名称_英文"), MaxLength(32, ErrorMessage = "指标名称_英文 不能超过 32 个字符")] + public string ItemName_EN { get; set; } /// /// 备注 diff --git a/Tiobon.Core.Model/Models/Ghrh/Ghrh_AssessConfig.cs b/Tiobon.Core.Model/Models/Ghrh/Ghrh_AssessConfig.cs index 14f8d148..6425d790 100644 --- a/Tiobon.Core.Model/Models/Ghrh/Ghrh_AssessConfig.cs +++ b/Tiobon.Core.Model/Models/Ghrh/Ghrh_AssessConfig.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/12/2 17:37:30 SimonHsiao 初版 +*V0.01 2024/12/3 9:21:44 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -27,20 +27,20 @@ public class Ghrh_AssessConfig : BasePoco /// /// 指标分类 /// - [Display(Name = "ConfigClass"), Description("指标分类"), MaxLength(32, ErrorMessage = "指标分类 不能超过 32 个字符")] - public string ConfigClass { get; set; } + [Display(Name = "ItemClass"), Description("指标分类"), MaxLength(32, ErrorMessage = "指标分类 不能超过 32 个字符")] + public string ItemClass { get; set; } /// /// 指标名称 /// - [Display(Name = "ConfigName"), Description("指标名称"), MaxLength(32, ErrorMessage = "指标名称 不能超过 32 个字符")] - public string ConfigName { get; set; } + [Display(Name = "ItemName"), Description("指标名称"), MaxLength(32, ErrorMessage = "指标名称 不能超过 32 个字符")] + public string ItemName { get; set; } /// /// 指标名称_英文 /// - [Display(Name = "ConfigName_EN"), Description("指标名称_英文"), MaxLength(32, ErrorMessage = "指标名称_英文 不能超过 32 个字符")] - public string ConfigName_EN { get; set; } + [Display(Name = "ItemName_EN"), Description("指标名称_英文"), MaxLength(32, ErrorMessage = "指标名称_英文 不能超过 32 个字符")] + public string ItemName_EN { get; set; } /// /// 备注 diff --git a/Tiobon.Core.Model/View/Ghrh/Ghrh_AssessConfig.Dto.View.cs b/Tiobon.Core.Model/View/Ghrh/Ghrh_AssessConfig.Dto.View.cs index dd80d762..c742ae1b 100644 --- a/Tiobon.Core.Model/View/Ghrh/Ghrh_AssessConfig.Dto.View.cs +++ b/Tiobon.Core.Model/View/Ghrh/Ghrh_AssessConfig.Dto.View.cs @@ -13,7 +13,7 @@ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ *└──────────────────────────────────┘ -*/ +*/ namespace Tiobon.Core.Model.Models; @@ -22,13 +22,19 @@ namespace Tiobon.Core.Model.Models; /// public class Ghrh_AssessConfigDto : Ghrh_AssessConfig { -/// -/// 创建信息 -/// -public string CreateDataInfo { get; set; } + /// + /// 创建信息 + /// + public string CreateDataInfo { get; set; } + + /// + /// 修改信息 + /// + public string UpdateDataInfo { get; set; } + + /// + /// 指标分类 + /// + public string ItemClassLabel { get; set; } -/// -/// 修改信息 -/// -public string UpdateDataInfo { get; set; } } diff --git a/Tiobon.Core.Services/Ghrh/Ghrh_AssessConfigServices.cs b/Tiobon.Core.Services/Ghrh/Ghrh_AssessConfigServices.cs index 6cbb7294..4a0d4009 100644 --- a/Tiobon.Core.Services/Ghrh/Ghrh_AssessConfigServices.cs +++ b/Tiobon.Core.Services/Ghrh/Ghrh_AssessConfigServices.cs @@ -12,4 +12,16 @@ public class Ghrh_AssessConfigServices : BaseServices> QueryFilterPage(QueryBody filter, string condition, bool? IsEnable = true) + { + var result = await base.QueryFilterPage(filter, condition, IsEnable); + var list = result.result.DT_TableDataT1; + + list.ForEach(async x => + { + x.ItemClassLabel = await GetParaLabel("ResumeAssessItemClass", x.ItemClass); + }); + return result; + } } \ No newline at end of file diff --git a/Tiobon.Core/Tiobon.Core.Model.xml b/Tiobon.Core/Tiobon.Core.Model.xml index fcb833f7..22e8ec11 100644 --- a/Tiobon.Core/Tiobon.Core.Model.xml +++ b/Tiobon.Core/Tiobon.Core.Model.xml @@ -5965,6 +5965,96 @@ 预留字段12 + + + 面试评估设定 (Dto.Base) + + + + + 指标分类 + + + + + 指标名称 + + + + + 指标名称_英文 + + + + + 备注 + + + + + 默认标志 + + + + + 预留字段1 + + + + + 预留字段2 + + + + + 预留字段3 + + + + + 预留字段4 + + + + + 预留字段5 + + + + + 预留字段6 + + + + + 预留字段7 + + + + + 预留字段8 + + + + + 预留字段9 + + + + + 预留字段10 + + + + + 预留字段11 + + + + + 预留字段12 + + 招聘参数配置 (Dto.Base) @@ -10227,6 +10317,11 @@ 培训讲师异动附件 (Dto.EditInput) + + + 面试评估设定 (Dto.EditInput) + + 招聘参数配置 (Dto.EditInput) @@ -10587,6 +10682,11 @@ 培训讲师异动附件 (Dto.InsertInput) + + + 面试评估设定 (Dto.InsertInput) + + 招聘参数配置 (Dto.InsertInput) @@ -16996,6 +17096,96 @@ 任务内存中的状态 + + + 面试评估设定 (Model) + + + + + 指标分类 + + + + + 指标名称 + + + + + 指标名称_英文 + + + + + 备注 + + + + + 默认标志 + + + + + 预留字段1 + + + + + 预留字段2 + + + + + 预留字段3 + + + + + 预留字段4 + + + + + 预留字段5 + + + + + 预留字段6 + + + + + 预留字段7 + + + + + 预留字段8 + + + + + 预留字段9 + + + + + 预留字段10 + + + + + 预留字段11 + + + + + 预留字段12 + + 招聘参数配置 (Model) @@ -22582,6 +22772,26 @@ 修改信息 + + + 面试评估设定(Dto.View1) + + + + + 创建信息 + + + + + 修改信息 + + + + + 指标分类 + + 招聘参数配置(Dto.View1) diff --git a/Tiobon.Core/Tiobon.Core.xml b/Tiobon.Core/Tiobon.Core.xml index fb379292..c4babebd 100644 --- a/Tiobon.Core/Tiobon.Core.xml +++ b/Tiobon.Core/Tiobon.Core.xml @@ -1234,6 +1234,11 @@ status + + + 面试评估设定(Controller) + + 招聘参数配置(Controller)