培训机构管理

master
xiaochanghai 1 year ago
parent 6e2716ae7e
commit 16b0398554
  1. 362
      Model/Tiobon.Web.pdm
  2. 4
      Tiobon.Core.Api/Tiobon.Core.Model.xml
  3. 4
      Tiobon.Core.Model/Base/Ghre/Ghre_School.Dto.Base.cs
  4. 4
      Tiobon.Core.Model/Models/Ghre/Ghre_School.cs
  5. 3
      Tiobon.Core.Model/View/Ghre/Ghre_School.Dto.View.cs
  6. 19
      Tiobon.Core.Model/View/Ghre/Ghre_SchoolAttachment.Dto.View.cs
  7. 6
      Tiobon.Core.Services/Ghre/Ghre_SchoolServices.cs
  8. 4
      Tiobon.Core/Tiobon.Core.Model.xml

File diff suppressed because it is too large Load Diff

@ -2860,7 +2860,7 @@
联系人
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_SchoolBase.PhoneNum">
<member name="P:Tiobon.Core.Model.Models.Ghre_SchoolBase.Mobile">
<summary>
手机号码
</summary>
@ -6618,7 +6618,7 @@
联系人
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_School.PhoneNum">
<member name="P:Tiobon.Core.Model.Models.Ghre_School.Mobile">
<summary>
手机号码
</summary>

@ -47,8 +47,8 @@ namespace Tiobon.Core.Model.Models
/// <summary>
/// 手机号码
/// </summary>
[Display(Name = "PhoneNum"), Description("手机号码"), MaxLength(32, ErrorMessage = "手机号码 不能超过 32 个字符")]
public string PhoneNum { get; set; }
[Display(Name = "Mobile"), Description("手机号码"), MaxLength(32, ErrorMessage = "手机号码 不能超过 32 个字符")]
public string Mobile { get; set; }
/// <summary>
/// 邮箱

@ -49,8 +49,8 @@ namespace Tiobon.Core.Model.Models
/// <summary>
/// 手机号码
/// </summary>
[Display(Name = "PhoneNum"), Description("手机号码"), MaxLength(32, ErrorMessage = "手机号码 不能超过 32 个字符")]
public string PhoneNum { get; set; }
[Display(Name = "Mobile"), Description("手机号码"), MaxLength(32, ErrorMessage = "手机号码 不能超过 32 个字符")]
public string Mobile { get; set; }
/// <summary>
/// 邮箱

@ -33,6 +33,5 @@ public class Ghre_SchoolDto : Ghre_School
public string UpdateDataInfo { get; set; }
public string ExpirationDate1 { get; set; }
public string EffectiveDate1 { get; set; }
public List<Ghre_SchoolAttachmentDto> SchoolAttachments { get; set; } = new List<Ghre_SchoolAttachmentDto>();
}

@ -22,13 +22,16 @@ namespace Tiobon.Core.Model.Models;
/// </summary>
public class Ghre_SchoolAttachmentDto : Ghre_SchoolAttachment
{
/// <summary>
/// 创建信息
/// </summary>
public string CreateDataInfo { get; set; }
/// <summary>
/// 创建信息
/// </summary>
public string CreateDataInfo { get; set; }
/// <summary>
/// 修改信息
/// </summary>
public string UpdateDataInfo { get; set; }
public List<Ghre_AttachmentDto> SchoolAttachments { get; set; } = new List<Ghre_AttachmentDto>();
/// <summary>
/// 修改信息
/// </summary>
public string UpdateDataInfo { get; set; }
}

@ -52,4 +52,10 @@ public class Ghre_SchoolServices : BaseServices<Ghre_School, Ghre_SchoolDto, Ins
return data;
}
public override async Task<ServiceFormResult<Ghre_SchoolDto>> QueryForm(QueryForm body)
{
var data = await base.QueryForm(body);
return data;
}
}

@ -2860,7 +2860,7 @@
联系人
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_SchoolBase.PhoneNum">
<member name="P:Tiobon.Core.Model.Models.Ghre_SchoolBase.Mobile">
<summary>
手机号码
</summary>
@ -6618,7 +6618,7 @@
联系人
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_School.PhoneNum">
<member name="P:Tiobon.Core.Model.Models.Ghre_School.Mobile">
<summary>
手机号码
</summary>

Loading…
Cancel
Save