You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.8 KiB
59 lines
1.8 KiB
using Tiobon.Core.Model.Models;
|
|
|
|
namespace Tiobon.Core.Model.ViewModels.Extend;
|
|
|
|
public class ResumeTemplateGroupColumn
|
|
{
|
|
public long ResumeInfoColumnID { get; set; }
|
|
public string ResumeInfoColumnName { get; set; }
|
|
public int SortNo { get; set; }
|
|
public int IsBuildIn { get; set; }
|
|
public int IsRequired { get; set; }
|
|
public int Removable { get; set; }
|
|
public int DisplayType { get; set; }
|
|
}
|
|
|
|
public class ResumeTemplateGroupColumn1
|
|
{
|
|
public int CanModifyBySelf { get; set; }
|
|
public string ColumnType { get; set; }
|
|
public int SortNo { get; set; }
|
|
public string ResumeInfoColumnName { get; set; }
|
|
public string DataType { get; set; }
|
|
public int IsSingleColumn { get; set; }
|
|
public string Placeholder { get; set; }
|
|
public long ResumeInfoColumnId { get; set; }
|
|
}
|
|
|
|
public class ResumeFormColumn
|
|
{
|
|
public string tabKey { get; set; }
|
|
public string tabName { get; set; }
|
|
public string type { get; set; }
|
|
public string children1 { get; set; }
|
|
public List<ResumeFormColumnChildren> children { get; set; }
|
|
|
|
}
|
|
|
|
public class ResumeFormColumnChildren
|
|
{
|
|
public string dataSource { get; set; }
|
|
public string dataType { get; set; }
|
|
public string editable { get; set; }
|
|
public string elementType { get; set; }
|
|
public string field { get; set; }
|
|
public string label { get; set; }
|
|
public string multipleSelect { get; set; }
|
|
public string @required { get; set; }
|
|
public string placeholder { get; set; }
|
|
public int sortNo { get; set; }
|
|
}
|
|
|
|
public class ResumeFormColumnSubmit
|
|
{
|
|
public EditGhrh_ResumeInput a1 { get; set; }
|
|
public EditGhrh_ResumeInput a2 { get; set; }
|
|
public List<EditGhrh_ResumeHomeInput> a3 { get; set; }
|
|
public List<EditGhrh_ResumeEduBGInput> a4 { get; set; }
|
|
public List<EditGhrh_ResumeWorkExpInput> a5 { get; set; }
|
|
}
|
|
|