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.
38 lines
862 B
38 lines
862 B
using Tiobon.Core.Model.Models;
|
|
|
|
namespace Tiobon.Core.Model.ViewModels.Extend;
|
|
|
|
public class ResumeViewTab
|
|
{
|
|
public string MenuName { get; set; }
|
|
public string TabName { get; set; }
|
|
public string QueryUrl { get; set; }
|
|
public int Count { get; set; }
|
|
public List<ResumeViewTabItem> Items { get; set; }
|
|
}
|
|
|
|
public class ResumeViewTabItem
|
|
{
|
|
public string ItemName { get; set; }
|
|
public string Key { get; set; }
|
|
public int Count { get; set; }
|
|
}
|
|
|
|
public class ResumeCondition
|
|
{
|
|
public string Key { get; set; }
|
|
public string Name { get; set; }
|
|
public string ParaMasterNo { get; set; }
|
|
public Dictionary<string, string> Items { get; set; }
|
|
|
|
}
|
|
public class ResumeFormColumn1
|
|
{
|
|
public string ColumnName { get; set; }
|
|
public string ColumnNameDesc { get; set; }
|
|
|
|
public string GroupType { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|