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.
 
 
 

168 lines
5.3 KiB

using SqlSugar;
namespace Tiobon.Core.Model;
public class MenuParam
{
public int langId { get; set; }
public string menuName { get; set; }
public string timestamp { get; set; }
public string token { get; set; }
public dynamic jsonParam { get; set; }
}
public class MenuReturn
{
public List<DT_SubMenu> DT_SubMenu { get; set; }
public List<DT_MenuColType> DT_MenuColType { get; set; }
}
public class DT_SubMenu
{
public string IconType { get; set; }
public string MenuGroupTitle { get; set; }
public string MenuName { get; set; }
public string MenuNo { get; set; }
public string MenuUrl { get; set; }
}
public class DT_MenuColType
{
public string MenuColType { get; set; }
}
public class ModuleParam
{
public int langId { get; set; }
public string menuName { get; set; }
public string timestamp { get; set; }
public string token { get; set; }
public dynamic jsonParam { get; set; }
}
public class ModuleReturn
{
public JM_PageControlT1 JM_PageControlT1 { get; set; } = new JM_PageControlT1();
public JM_TableColumnT1 JM_TableColumnT1 { get; set; } = new JM_TableColumnT1();
public List<DT_PageMutiMsg> DT_PageMutiMsg { get; set; }
public DT_Procedure DT_Procedure { get; set; } = new DT_Procedure();
}
public class JM_PageControlT1
{
public List<Toolbar> Toolbar { get; set; }
}
public class Toolbar
{
public string fnKey { get; set; }
public string fnKeyValue { get; set; }
public string fnTitle { get; set; }
public string fnType { get; set; }
public string position { get; set; }
public string icon { get; set; }
public bool display { get; set; }
}
public class JM_TableColumnT1
{
public List<TableColumn> TableColumn { get; set; }
}
public class TableColumn
{
public string PageSettingQueryId { get; set; }
public string elementType { get; set; }
public string field { get; set; }
public string label { get; set; }
public string Meky { get; set; }
public string multipleSelect { get; set; }
public string dataType { get; set; }
public bool? required { get; set; }
public string palceholder { get; set; }
public string dataSourceType { get; set; }
public string dataSource { get; set; }
public bool? sortable { get; set; }
public string sortOrder { get; set; }
public bool? defaultHidden { get; set; }
public bool? ConfigIsShow { get; set; }
public string filterable { get; set; }
public int width { get; set; }
public string align { get; set; }
public string fixed1 { get; set; }
public bool? editable { get; set; }
public bool? searchable { get; set; }
public bool? searchRequired { get; set; }
public string searchColumnSeq { get; set; }
public string multipleSearchValue { get; set; }
public string maxTagCount { get; set; }
public string selfDefine { get; set; }
public string selectUI { get; set; }
public string isPrimaryKey { get; set; }
public bool? isSorted { get; set; }
public bool? isHidden { get; set; }
public bool? isSearched { get; set; }
public int SortNo { get; set; }
public string searchOperator1 { get; set; }
public List<searchOperator> searchOperator { get; set; }
public string searchColumnDefaultValue { get; set; }
public string AppColumnType { get; set; }
public int pageColumnID { get; set; }
}
public class searchOperator
{
public string @operator { get; set; }
public string operatorDesc { get; set; }
public string operatorIcon { get; set; }
}
public class TableColumn1
{
public string PageSettingQueryId { get; set; }
public string elementType { get; set; }
public string field { get; set; }
public string label { get; set; }
public string Meky { get; set; }
public string multipleSelect { get; set; }
public string dataType { get; set; }
public string required { get; set; }
public string palceholder { get; set; }
public string dataSourceType { get; set; }
public string dataSource { get; set; }
public string sortable { get; set; }
public string sortOrder { get; set; }
public string defaultHidden { get; set; }
public string ConfigIsShow { get; set; }
public string filterable { get; set; }
public int width { get; set; }
public string align { get; set; }
public string fixed1 { get; set; }
public string editable { get; set; }
public string searchable { get; set; }
public string searchRequired { get; set; }
public string searchColumnSeq { get; set; }
public string multipleSearchValue { get; set; }
public string maxTagCount { get; set; }
public string selfDefine { get; set; }
public string selectUI { get; set; }
public string isPrimaryKey { get; set; }
public string isSorted { get; set; }
public string isHidden { get; set; }
public string isSearched { get; set; }
public int SortNo { get; set; }
public string searchOperator1 { get; set; }
public string searchColumnDefaultValue { get; set; }
public string AppColumnType { get; set; }
public int pageColumnID { get; set; }
}
public class DT_PageMutiMsg
{
public string field { get; set; }
public string label { get; set; }
}
public class DT_Procedure
{
public string EditProcedure { get; set; }
public string IUDProcedure { get; set; }
public string QueryProcedure { get; set; }
}