diff --git a/Tiobon.Core.Api/Controllers/Ghra_GradeController.cs b/Tiobon.Core.Api/Controllers/Ghra_GradeController.cs index f5f7ce58..2b9f2f6a 100644 --- a/Tiobon.Core.Api/Controllers/Ghra_GradeController.cs +++ b/Tiobon.Core.Api/Controllers/Ghra_GradeController.cs @@ -1,7 +1,7 @@ namespace Tiobon.Core.Api.Controllers; /// -/// Ghra_Grade +/// 年级(Controller) /// [Route("api/[controller]")] [ApiController, GlobalActionFilter] diff --git a/Tiobon.Core.Api/Tiobon.Core.xml b/Tiobon.Core.Api/Tiobon.Core.xml index 04ebdb87..628d91ba 100644 --- a/Tiobon.Core.Api/Tiobon.Core.xml +++ b/Tiobon.Core.Api/Tiobon.Core.xml @@ -1593,11 +1593,6 @@ - - - Ghra_Grade - - 全局请求验证 diff --git a/Tiobon.Core.IServices/IGhra_GradeServices.cs b/Tiobon.Core.IServices/IGhra_GradeServices.cs index 4a2a9fb8..d2186134 100644 --- a/Tiobon.Core.IServices/IGhra_GradeServices.cs +++ b/Tiobon.Core.IServices/IGhra_GradeServices.cs @@ -4,7 +4,7 @@ using Tiobon.Core.Model.Models; namespace Tiobon.Core.IServices { /// - /// IGhra_GradeServices + /// 年级(自定义服务接口) /// public interface IGhra_GradeServices :IBaseServices { diff --git a/Tiobon.Core.Model/Base/Ghra/Ghra_Grade.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghra/Ghra_Grade.Dto.Base.cs index f3ef1097..04657f0d 100644 --- a/Tiobon.Core.Model/Base/Ghra/Ghra_Grade.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghra/Ghra_Grade.Dto.Base.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/4/15 18:01:18 SimonHsiao 初版 +*V0.01 2024/4/17 14:37:42 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -21,7 +21,7 @@ namespace Tiobon.Core.Model.Models { /// - /// Ghra_Grade + /// 年级 (Dto.Base) /// public class Ghra_GradeBase { diff --git a/Tiobon.Core.Model/Edit/Ghra/Ghra_Grade.Dto.EditInput.cs b/Tiobon.Core.Model/Edit/Ghra/Ghra_Grade.Dto.EditInput.cs index 91d35816..2da5e391 100644 --- a/Tiobon.Core.Model/Edit/Ghra/Ghra_Grade.Dto.EditInput.cs +++ b/Tiobon.Core.Model/Edit/Ghra/Ghra_Grade.Dto.EditInput.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/4/15 18:01:18 SimonHsiao 初版 +*V0.01 2024/4/17 14:37:42 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -19,7 +19,7 @@ namespace Tiobon.Core.Model.Models { /// - /// Ghra_Grade + /// 年级 (Dto.EditInput) /// public class EditGhra_GradeInput : Ghra_GradeBase { diff --git a/Tiobon.Core.Model/Insert/Ghra/Ghra_Grade.Dto.InsertInput.cs b/Tiobon.Core.Model/Insert/Ghra/Ghra_Grade.Dto.InsertInput.cs index 6b7e1223..b63c3a64 100644 --- a/Tiobon.Core.Model/Insert/Ghra/Ghra_Grade.Dto.InsertInput.cs +++ b/Tiobon.Core.Model/Insert/Ghra/Ghra_Grade.Dto.InsertInput.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/4/15 18:01:18 SimonHsiao 初版 +*V0.01 2024/4/17 14:37:42 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -19,7 +19,7 @@ namespace Tiobon.Core.Model.Models { /// - /// Ghra_Grade + /// 年级 (Dto.InsertInput) /// public class InsertGhra_GradeInput : Ghra_GradeBase { diff --git a/Tiobon.Core.Model/Models/Ghra/Ghra_Grade.cs b/Tiobon.Core.Model/Models/Ghra/Ghra_Grade.cs index 538b5c43..fb661223 100644 --- a/Tiobon.Core.Model/Models/Ghra/Ghra_Grade.cs +++ b/Tiobon.Core.Model/Models/Ghra/Ghra_Grade.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/4/15 18:01:18 SimonHsiao 初版 +*V0.01 2024/4/17 14:37:42 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -22,9 +22,9 @@ namespace Tiobon.Core.Model.Models { /// - /// Ghra_Grade + /// 年级 (Model) /// - [SugarTable("Ghra_Grade", "Ghra_Grade"), Entity(TableCnName = "Ghra_Grade", TableName = "Ghra_Grade")] + [SugarTable("Ghra_Grade", "Ghra_Grade"), Entity(TableCnName = "年级", TableName = "Ghra_Grade")] public class Ghra_Grade : BasePoco { diff --git a/Tiobon.Core.Model/View/Ghra/Ghra_Grade.Dto.View.cs b/Tiobon.Core.Model/View/Ghra/Ghra_Grade.Dto.View.cs index 4ecaf46f..04d95727 100644 --- a/Tiobon.Core.Model/View/Ghra/Ghra_Grade.Dto.View.cs +++ b/Tiobon.Core.Model/View/Ghra/Ghra_Grade.Dto.View.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/4/15 18:01:18 SimonHsiao 初版 +*V0.01 2024/4/17 14:37:42 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -19,7 +19,7 @@ namespace Tiobon.Core.Model.Models { /// - /// Ghra_Grade + /// 年级(Dto.View) /// public class Ghra_GradeDto : Ghra_Grade { diff --git a/Tiobon.Core.Services/Ghra_GradeServices.cs b/Tiobon.Core.Services/Ghra_GradeServices.cs index 97aafff3..befdafba 100644 --- a/Tiobon.Core.Services/Ghra_GradeServices.cs +++ b/Tiobon.Core.Services/Ghra_GradeServices.cs @@ -6,6 +6,9 @@ using Tiobon.Core.IRepository.Base; namespace Tiobon.Core.Services { + /// + /// 年级 (服务) + /// public class Ghra_GradeServices : BaseServices, IGhra_GradeServices { private readonly IBaseRepository _dal;