namespace Tiobon.Core.Model; public class CustomFieldView { /// /// 分组 /// public string GroupName { get; set; } /// /// 字段 /// public List Fields { get; set; } } /// /// 标签对应的描述 /// public class ModelTagView2Item { /// /// 描述 /// public string Name { get; set; } /// /// 字段 /// public string Code { set; get; } } public class OfferTemplate { /// /// 姓名 /// [Description("姓名")] public string StaffName { get; set; } /// /// 电话 /// [Description("电话")] public string Mobile { get; set; } /// /// 邮箱 /// [Description("邮箱")] public string Email { get; set; } /// /// 身份证号码 /// [Description("身份证号码")] public string IdCardNo { get; set; } /// /// 岗位 /// [Description("岗位")] public string TitleName { get; set; } /// /// 汇报对象 /// [Description("汇报对象")] public string ReportName { get; set; } /// /// 薪资 /// [Description("薪资")] public string Salary { get; set; } /// /// 入职日期 /// [Description("入职日期")] public string InDate { get; set; } }