using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Application.Service.WmsSystem.WmsSysPdaMenu.Dto; public class WmsPdaRoleMenuListOutput { public string Name { get; set; } public List WmsPdaRoleMenuOutput { get; set; } } public class SysPadRoleMenuListOutput : SysPadMenuOutput { public bool IsCheck { get; set; } } /// /// PDA菜单管理输出参数 /// public class SysPadMenuOutput { /// /// 图标 /// public string Icon { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 颜色 /// public string Color { get; set; } /// /// 菜单类别 /// public PdaMenuTypeEnum MenuType { get; set; } /// /// Id /// public long Id { get; set; } } public class QueryRoleInput : BaseIdInput { }