3.新增根据员工ID查询员工数据

master
xiaochanghai 1 year ago
parent 0ee81418fd
commit 3c25ac400f
  1. 688
      Model/Tiobon.Web.pdm
  2. 10
      Tiobon.Core.Api/Tiobon.Core.Model.xml
  3. 6
      Tiobon.Core.Model/Base/Ghre/Ghre_Exam.Dto.Base.cs
  4. 8
      Tiobon.Core.Model/Models/Ghre/Ghre_Exam.cs
  5. 4
      Tiobon.Core.Model/ViewModels/Extend/DefaultGhre_ExamInput.cs
  6. 10
      Tiobon.Core/Tiobon.Core.Model.xml

File diff suppressed because it is too large Load Diff

@ -1505,6 +1505,11 @@
状态
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamBase.ExamPlace">
<summary>
线下考试地点
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamBase.RemarkSz">
<summary>
备注
@ -4388,6 +4393,11 @@
状态
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_Exam.ExamPlace">
<summary>
线下考试地点
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_Exam.RemarkSz">
<summary>
备注

@ -108,6 +108,12 @@ namespace Tiobon.Core.Model.Models
[Display(Name = "Status"), Description("状态"), MaxLength(32, ErrorMessage = "状态 不能超过 32 个字符")]
public string Status { get; set; }
/// <summary>
/// 线下考试地点
/// </summary>
[Display(Name = "ExamPlace"), Description("线下考试地点"), MaxLength(64, ErrorMessage = "线下考试地点 不能超过 64 个字符")]
public string ExamPlace { get; set; }
/// <summary>
/// 备注
/// </summary>

@ -13,7 +13,7 @@
*  
* SimonHsiao
*
*/
*/
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using SqlSugar;
@ -110,6 +110,12 @@ namespace Tiobon.Core.Model.Models
[Display(Name = "Status"), Description("状态"), MaxLength(32, ErrorMessage = "状态 不能超过 32 个字符")]
public string Status { get; set; }
/// <summary>
/// 线下考试地点
/// </summary>
[Display(Name = "ExamPlace"), Description("线下考试地点"), MaxLength(64, ErrorMessage = "线下考试地点 不能超过 64 个字符")]
public string ExamPlace { get; set; }
/// <summary>
/// 备注
/// </summary>

@ -33,12 +33,12 @@ public class DefaultGhre_ExamColumn
public int width { get; set; } = 150;
public string @fixed { get; set; }
public string align { get; set; }
}
public class DefaultGhre_ExamPageData : Ghre_ExamBase
{
public string AfterHowLong1 { get; set; }
public List<StaffTableData> staffTableData { get; set; } = new List<StaffTableData>();
}
public class StaffTableData

@ -1505,6 +1505,11 @@
状态
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamBase.ExamPlace">
<summary>
线下考试地点
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamBase.RemarkSz">
<summary>
备注
@ -4388,6 +4393,11 @@
状态
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_Exam.ExamPlace">
<summary>
线下考试地点
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_Exam.RemarkSz">
<summary>
备注

Loading…
Cancel
Save