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.
46 lines
1.4 KiB
46 lines
1.4 KiB
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 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 int sortNo { get; set; }
|
|
}
|
|
|