61 lines
1.3 KiB
C#
61 lines
1.3 KiB
C#
|
using Syc.Basic.Web.WMS.Enums;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Syc.Basic.Web.WMS.Dtos.Menu
|
|||
|
{
|
|||
|
public class MenuPlainInfoListDto
|
|||
|
{
|
|||
|
public bool affix { get; set; }
|
|||
|
|
|||
|
public bool carryParam { get; set; }
|
|||
|
|
|||
|
public string component { get; set; }
|
|||
|
|
|||
|
public bool disabled { get; set; }
|
|||
|
|
|||
|
public string frameSrc { get; set; }
|
|||
|
|
|||
|
public bool hideBreadcrumb { get; set; }
|
|||
|
|
|||
|
public bool hideChildrenInMenu { get; set; }
|
|||
|
|
|||
|
public bool hideMenu { get; set; }
|
|||
|
|
|||
|
public bool hideTab { get; set; }
|
|||
|
|
|||
|
public string icon { get; set; }
|
|||
|
|
|||
|
public int id { get; set; }
|
|||
|
|
|||
|
public bool ignoreKeepAlive { get; set; }
|
|||
|
|
|||
|
public int level { get; set; } = 20;
|
|||
|
|
|||
|
public MenuType menuType { get; set; }
|
|||
|
|
|||
|
public string name { get; set; }
|
|||
|
|
|||
|
public int parentId { get; set; }
|
|||
|
|
|||
|
public string path { get; set; }
|
|||
|
|
|||
|
public string realPath { get; set; }
|
|||
|
|
|||
|
public string redirect { get; set; }
|
|||
|
|
|||
|
public string serviceName { get; set; }
|
|||
|
|
|||
|
public int sort { get; set; }
|
|||
|
|
|||
|
public string title { get; set; }
|
|||
|
|
|||
|
public string trans { get; set; }
|
|||
|
|
|||
|
public string permissionCode { get; set; }
|
|||
|
}
|
|||
|
}
|