using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// vue树形表 /// [Serializable] public class FunctionTreeTableOutputDto { /// /// 设置或获取 /// [MaxLength(50)] public long Id { get; set; } /// /// 设置或获取 /// [MaxLength(50)] public string SystemTypeId { get; set; } /// /// public string SystemTypeName { get; set; } /// /// 设置或获取 /// [MaxLength(50)] public long ParentId { get; set; } /// /// 设置或获取 /// public long? Layers { get; set; } /// /// 设置或获取 /// [MaxLength(50)] public string EnCode { get; set; } /// /// 设置或获取 /// [MaxLength(50)] public string FullName { get; set; } /// /// 设置或获取 /// [MaxLength(50)] public string Icon { get; set; } /// /// 设置或获取 /// [MaxLength(500)] public string UrlAddress { get; set; } /// /// 设置或获取 /// [MaxLength(50)] public string Target { get; set; } /// /// 设置或获取 /// public bool? IsMenu { get; set; } /// /// 设置或获取 /// public bool? IsExpand { get; set; } /// /// 设置或获取 /// public bool? IsPublic { get; set; } /// /// 设置或获取 /// public bool? AllowEdit { get; set; } /// /// 设置或获取 /// public bool? AllowDelete { get; set; } /// /// 设置或获取 /// public long? SortCode { get; set; } /// /// 设置或获取 /// public bool? IsDeleted { get; set; } /// /// 设置或获取 /// public bool? IsEnabled { get; set; } /// /// 设置或获取 /// [MaxLength(500)] public string Description { get; set; } /// /// 设置或获取 /// public DateTime? CreatedTime { get; set; } /// /// 设置或获取 /// [MaxLength(50)] public string CreatedUserId { get; set; } /// /// 设置或获取 /// public DateTime? ModifiedTime { get; set; } /// /// 设置或获取 /// [MaxLength(50)] public string ModifiedUserId { get; set; } /// /// 设置或获取 /// public DateTime? DeleteTime { get; set; } /// /// 设置或获取 /// [MaxLength(50)] public string DeleteUserId { get; set; } /// /// 子菜单 /// public List Children { get; set; } /// /// 系统标记 /// public bool SystemTag { get; set; } } }