You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
951 B
C#
35 lines
951 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
[Serializable]
|
|
public class GetMenu : BaseEntity
|
|
{
|
|
[Column("name")]
|
|
public string name { get; set; }
|
|
[Column("emp_id")]
|
|
public string empId { get; set; }
|
|
[Column("dll_name")]
|
|
public string dllName { get; set; }
|
|
[Column("sort_num")]
|
|
public string sortNum { get; set; }
|
|
[Column("menu_type_name")]
|
|
public string menuTypeName { get; set; }
|
|
[Column("menu_sort_num")]
|
|
public string menuSortNum { get; set; }
|
|
[Column("fun_name")]
|
|
public string funName { get; set; }
|
|
[Column("icon_url")]
|
|
public string iconUrl { get; set; }
|
|
|
|
}
|
|
[Serializable]
|
|
public class GetMenuList : BaseEntity
|
|
{
|
|
public string menuTypeName { get; set; }
|
|
|
|
public List<GetMenu> menulist { get; set; }
|
|
}
|
|
}
|