using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Module;
///
/// 功能信息输出.
///
[SuppressSniffer]
public class ModuleInfoOutput
{
///
/// id.
///
public string id { get; set; }
///
/// 上级菜单.
///
public string parentId { get; set; }
///
/// 菜单名称.
///
public string fullName { get; set; }
///
/// 菜单编码.
///
public string enCode { get; set; }
///
/// 菜单图标.
///
public string icon { get; set; }
///
/// 菜单类型(1-目录,2-页面).
///
public int? type { get; set; }
///
/// 链接地址.
///
public string urlAddress { get; set; }
///
/// 链接方式(_self,_blank).
///
public string linkTarget { get; set; }
///
/// 菜单分类.
///
public string category { get; set; }
///
/// 状态.
///
public int? enabledMark { get; set; }
///
/// 是否开启数据权限(1-开启,0-未开启).
///
public int? isDataAuthorize { get; set; }
///
/// 是否开启列表权限(1-开启,0-未开启).
///
public int? isColumnAuthorize { get; set; }
///
/// 是否开启按钮权限(1-开启,0-未开启).
///
public int? isButtonAuthorize { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
///
/// 说明.
///
public string description { get; set; }
///
/// 扩展信息.
///
public string propertyJson { get; set; }
///
/// 系统id.
///
public string systemId { get; set; }
}