diff --git a/Model/Tiobon.Web.pdm b/Model/Tiobon.Web.pdm index 874573c3..5653640e 100644 --- a/Model/Tiobon.Web.pdm +++ b/Model/Tiobon.Web.pdm @@ -1,5 +1,5 @@ - + @@ -60054,11 +60054,10 @@ Ghra_staff_InsureBase DeptId 1744009513 Administrator -1744873817 +1744883059 Administrator 部门ID -nvarchar(32) -32 +int 3C79C1CD-6CC7-4B19-B66B-8AE270E08D34 @@ -60066,11 +60065,10 @@ Ghra_staff_InsureBase CourseId 1744009513 Administrator -1744873809 +1744883070 Administrator 课程ID -nvarchar(32) -32 +bigint CB8C4C97-0009-4E39-9D0D-8EE0B60ED2EE @@ -60078,11 +60076,10 @@ Ghra_staff_InsureBase TitleId 1744009513 Administrator -1744873804 +1744883062 Administrator 岗位ID -nvarchar(32) -32 +int 5316BAE3-3431-45CC-A411-B275C0CBFF62 @@ -60090,10 +60087,11 @@ Ghra_staff_InsureBase RequiredElective 1744275295 Administrator -1744873804 +1744883052 Administrator 必/选修 -int +nvarchar(32) +32 873BCBB3-A5A7-4FC9-A9A2-0087FA2A6986 diff --git a/Tiobon.Core.Model/Base/Ghre/Ghre_TitleSkill_Boltone.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghre/Ghre_TitleSkill_Boltone.Dto.Base.cs index f69c51f8..34932866 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_TitleSkill_Boltone.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_TitleSkill_Boltone.Dto.Base.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/4/17 16:24:41 SimonHsiao 初版 +*V0.01 2025/4/17 17:45:28 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -26,25 +26,23 @@ public class Ghre_TitleSkill_BoltoneBase /// /// 部门ID /// - [Display(Name = "DeptId"), Description("部门ID"), MaxLength(32, ErrorMessage = "部门ID 不能超过 32 个字符")] - public string DeptId { get; set; } + public int? DeptId { get; set; } /// /// 课程ID /// - [Display(Name = "CourseId"), Description("课程ID"), MaxLength(32, ErrorMessage = "课程ID 不能超过 32 个字符")] - public string CourseId { get; set; } + public long? CourseId { get; set; } /// /// 岗位ID /// - [Display(Name = "TitleId"), Description("岗位ID"), MaxLength(32, ErrorMessage = "岗位ID 不能超过 32 个字符")] - public string TitleId { get; set; } + public int? TitleId { get; set; } /// /// 必/选修 /// - public int? RequiredElective { get; set; } + [Display(Name = "RequiredElective"), Description("必/选修"), MaxLength(32, ErrorMessage = "必/选修 不能超过 32 个字符")] + public string RequiredElective { get; set; } /// /// 生效日期 diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_TitleSkill_Boltone.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_TitleSkill_Boltone.cs index 70ed97dd..09ae65ef 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_TitleSkill_Boltone.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_TitleSkill_Boltone.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/4/17 16:24:41 SimonHsiao 初版 +*V0.01 2025/4/17 17:45:28 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -27,25 +27,23 @@ public class Ghre_TitleSkill_Boltone : BasePoco /// /// 部门ID /// - [Display(Name = "DeptId"), Description("部门ID"), MaxLength(32, ErrorMessage = "部门ID 不能超过 32 个字符")] - public string DeptId { get; set; } + public int? DeptId { get; set; } /// /// 课程ID /// - [Display(Name = "CourseId"), Description("课程ID"), MaxLength(32, ErrorMessage = "课程ID 不能超过 32 个字符")] - public string CourseId { get; set; } + public long? CourseId { get; set; } /// /// 岗位ID /// - [Display(Name = "TitleId"), Description("岗位ID"), MaxLength(32, ErrorMessage = "岗位ID 不能超过 32 个字符")] - public string TitleId { get; set; } + public int? TitleId { get; set; } /// /// 必/选修 /// - public int? RequiredElective { get; set; } + [Display(Name = "RequiredElective"), Description("必/选修"), MaxLength(32, ErrorMessage = "必/选修 不能超过 32 个字符")] + public string RequiredElective { get; set; } /// /// 生效日期