master
xiaochanghai 1 year ago
parent 1a0420c4d2
commit 2ab91a30d2
  1. 2
      Tiobon.Core.Api/Controllers/Ghra_GradeController.cs
  2. 5
      Tiobon.Core.Api/Tiobon.Core.xml
  3. 2
      Tiobon.Core.IServices/IGhra_GradeServices.cs
  4. 4
      Tiobon.Core.Model/Base/Ghra/Ghra_Grade.Dto.Base.cs
  5. 4
      Tiobon.Core.Model/Edit/Ghra/Ghra_Grade.Dto.EditInput.cs
  6. 4
      Tiobon.Core.Model/Insert/Ghra/Ghra_Grade.Dto.InsertInput.cs
  7. 6
      Tiobon.Core.Model/Models/Ghra/Ghra_Grade.cs
  8. 4
      Tiobon.Core.Model/View/Ghra/Ghra_Grade.Dto.View.cs
  9. 3
      Tiobon.Core.Services/Ghra_GradeServices.cs

@ -1,7 +1,7 @@
namespace Tiobon.Core.Api.Controllers; namespace Tiobon.Core.Api.Controllers;
/// <summary> /// <summary>
/// Ghra_Grade /// 年级(Controller)
/// </summary> /// </summary>
[Route("api/[controller]")] [Route("api/[controller]")]
[ApiController, GlobalActionFilter] [ApiController, GlobalActionFilter]

@ -1593,11 +1593,6 @@
</summary> </summary>
<returns></returns> <returns></returns>
</member> </member>
<member name="T:Tiobon.Core.Api.Controllers.TestController">
<summary>
Ghra_Grade
</summary>
</member>
<member name="T:Tiobon.Core.Api.Filter.GlobalActionFilter"> <member name="T:Tiobon.Core.Api.Filter.GlobalActionFilter">
<summary> <summary>
全局请求验证 全局请求验证

@ -4,7 +4,7 @@ using Tiobon.Core.Model.Models;
namespace Tiobon.Core.IServices namespace Tiobon.Core.IServices
{ {
/// <summary> /// <summary>
/// IGhra_GradeServices /// 年级(自定义服务接口)
/// </summary> /// </summary>
public interface IGhra_GradeServices :IBaseServices<Ghra_Grade, Ghra_GradeDto, InsertGhra_GradeInput, EditGhra_GradeInput> public interface IGhra_GradeServices :IBaseServices<Ghra_Grade, Ghra_GradeDto, InsertGhra_GradeInput, EditGhra_GradeInput>
{ {

@ -6,7 +6,7 @@
* *
* Ver * 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. * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
* *
@ -21,7 +21,7 @@ namespace Tiobon.Core.Model.Models
{ {
/// <summary> /// <summary>
/// Ghra_Grade /// 年级 (Dto.Base)
/// </summary> /// </summary>
public class Ghra_GradeBase public class Ghra_GradeBase
{ {

@ -6,7 +6,7 @@
* *
* Ver * 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. * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
* *
@ -19,7 +19,7 @@ namespace Tiobon.Core.Model.Models
{ {
/// <summary> /// <summary>
/// Ghra_Grade /// 年级 (Dto.EditInput)
/// </summary> /// </summary>
public class EditGhra_GradeInput : Ghra_GradeBase public class EditGhra_GradeInput : Ghra_GradeBase
{ {

@ -6,7 +6,7 @@
* *
* Ver * 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. * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
* *
@ -19,7 +19,7 @@ namespace Tiobon.Core.Model.Models
{ {
/// <summary> /// <summary>
/// Ghra_Grade /// 年级 (Dto.InsertInput)
/// </summary> /// </summary>
public class InsertGhra_GradeInput : Ghra_GradeBase public class InsertGhra_GradeInput : Ghra_GradeBase
{ {

@ -6,7 +6,7 @@
* *
* Ver * 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. * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
* *
@ -22,9 +22,9 @@ namespace Tiobon.Core.Model.Models
{ {
/// <summary> /// <summary>
/// Ghra_Grade /// 年级 (Model)
/// </summary> /// </summary>
[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 public class Ghra_Grade : BasePoco
{ {

@ -6,7 +6,7 @@
* *
* Ver * 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. * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
* *
@ -19,7 +19,7 @@ namespace Tiobon.Core.Model.Models
{ {
/// <summary> /// <summary>
/// Ghra_Grade /// 年级(Dto.View)
/// </summary> /// </summary>
public class Ghra_GradeDto : Ghra_Grade public class Ghra_GradeDto : Ghra_Grade
{ {

@ -6,6 +6,9 @@ using Tiobon.Core.IRepository.Base;
namespace Tiobon.Core.Services namespace Tiobon.Core.Services
{ {
/// <summary>
/// 年级 (服务)
/// </summary>
public class Ghra_GradeServices : BaseServices<Ghra_Grade, Ghra_GradeDto, InsertGhra_GradeInput, EditGhra_GradeInput>, IGhra_GradeServices public class Ghra_GradeServices : BaseServices<Ghra_Grade, Ghra_GradeDto, InsertGhra_GradeInput, EditGhra_GradeInput>, IGhra_GradeServices
{ {
private readonly IBaseRepository<Ghra_Grade> _dal; private readonly IBaseRepository<Ghra_Grade> _dal;

Loading…
Cancel
Save