using System; using System.Collections.Generic; namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// 模块功能 /// [Serializable] public class ModuleFunctionOutputDto { /// /// 功能Id /// public long Id { get; set; } /// /// 设置或获取 功能名称 /// public string FullName { get; set; } /// /// 设置或获取 功能标识 0-子系统 1-标识菜单/模块,2标识按钮功能 /// public long FunctionTag { get; set; } /// /// 设置或获取 是否禁止选择 /// public bool IsShow { get; set; } /// /// 设置或获取 功能标识 M-标识菜单,F标识功能 /// public List listFunction { get; set; } /// /// 子菜单 /// public List Children { get; set; } } }