using Tiobon.Core.Model.Models; namespace Tiobon.Core.Model; public class DefaultGhre_ExamInput { public List baseColumns { get; set; } = new List(); public List staffTableColumns { get; set; } = new List(); public DefaultGhre_ExamPageData pageData { get; set; } = new DefaultGhre_ExamPageData(); /// /// 修改信息 黄一名 于 2024-05-10 15:02 最后修改 /// public string UpdateDataInfo { get; set; } /// /// 创建信息 黄一名 于 2024-05-10 14:57 创建 /// public string CreateDataInfo { get; set; } } public class DefaultGhre_ExamColumn { public string label { get; set; } public string field { get; set; } public string elementType { get; set; } public bool required { get; set; } public bool multipleSelect { get; set; } public bool editable { get; set; } public string dataSource { get; set; } public string placeholder { get; set; } public int displayType { get; set; } public int width { get; set; } = 150; public string @fixed { get; set; } public string align { get; set; } } public class DefaultGhre_ExamPageData : Ghre_ExamBase { public List staffTableData { get; set; } = new List(); } public class StaffTableData { public int StaffID { get; set; } public string StaffNo { get; set; } public string StaffName { get; set; } public string DeptName { get; set; } public string TitleName { get; set; } public string InDate { get; set; } public string Mail { get; set; } public string DataSource { get; set; } }