diff --git a/Model/Tiobon.Web.pdm b/Model/Tiobon.Web.pdm index ca918d93..952147be 100644 --- a/Model/Tiobon.Web.pdm +++ b/Model/Tiobon.Web.pdm @@ -1,5 +1,5 @@ - + @@ -10010,7 +10010,7 @@ DESTINATION 0 新宋体,8,N 1738913762 1747275741 -((-45223,-30675), (-40499,-24525)) +((-45111,-30675), (-40611,-24525)) ((-44099,-30675),(-44099,-27375),(-41624,-27375),(-41624,-24525)) 2 1 @@ -10100,7 +10100,7 @@ DESTINATION 0 新宋体,8,N 1738916098 1738916104 -((-54111,-31050), (-42899,-24863)) +((-53999,-31050), (-42899,-24863)) ((-51749,-31050),(-51749,-25275),(-42899,-25275)) 2 1 @@ -10189,7 +10189,7 @@ DESTINATION 0 新宋体,8,N 1741253560 1741253591 -((39197,5850), (46921,13800)) +((39309,5850), (46809,13800)) ((43059,13800),(43059,5850)) 2 1 @@ -10211,7 +10211,7 @@ DESTINATION 0 新宋体,8,N 1741255050 1741255050 -((38289,14400), (47513,22350)) +((38401,14400), (47401,22350)) ((42901,22350),(42901,14400)) 2 1 @@ -61689,10 +61689,11 @@ Ghra_staff_InsureBase PlanId 1747811828 Administrator -1747811877 +1747967262 Administrator 计划ID -bigint +nvarchar(2000) +2000 1FBD2ED3-7EE4-4599-89C2-DFF21B628E3A diff --git a/Tiobon.Core.Model/Base/Ghre/Ghre_TrainFeeApplyOrder_Boltone.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghre/Ghre_TrainFeeApplyOrder_Boltone.Dto.Base.cs index e97b555f..b663e491 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_TrainFeeApplyOrder_Boltone.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_TrainFeeApplyOrder_Boltone.Dto.Base.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/5/21 15:20:27 SimonHsiao 初版 +*V0.01 2025/5/23 10:30:26 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -289,7 +289,8 @@ public class Ghre_TrainFeeApplyOrder_BoltoneBase /// /// 计划ID /// - public long? PlanId { get; set; } + [Display(Name = "PlanId"), Description("计划ID"), MaxLength(2000, ErrorMessage = "计划ID 不能超过 2000 个字符")] + public string PlanId { get; set; } public List Attachments { get; set; } = new List(); public List Details { get; set; } = new List(); diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_TrainFeeApplyOrder_Boltone.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_TrainFeeApplyOrder_Boltone.cs index 092c2e99..91a9e283 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_TrainFeeApplyOrder_Boltone.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_TrainFeeApplyOrder_Boltone.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/5/21 15:20:27 SimonHsiao 初版 +*V0.01 2025/5/23 10:30:26 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -288,5 +288,6 @@ public class Ghre_TrainFeeApplyOrder_Boltone : BasePoco /// /// 计划ID /// - public long? PlanId { get; set; } + [Display(Name = "PlanId"), Description("计划ID"), MaxLength(2000, ErrorMessage = "计划ID 不能超过 2000 个字符")] + public string PlanId { get; set; } } diff --git a/Tiobon.Core.Services/Ghre/Ghre_PlanServices.cs b/Tiobon.Core.Services/Ghre/Ghre_PlanServices.cs index ad0e79ae..d08fd66c 100644 --- a/Tiobon.Core.Services/Ghre/Ghre_PlanServices.cs +++ b/Tiobon.Core.Services/Ghre/Ghre_PlanServices.cs @@ -705,4 +705,11 @@ public class Ghre_PlanServices : BaseServices.OprateSuccess("导入成功!", data); } #endregion + + #region 培训计划达成率 + //public async Task> QueryCompletionRateBLT(QueryBody filter) + //{ + + //} + #endregion } \ No newline at end of file