using AutoMapper; using System; using Znyc.Admin.Commons.Dtos; using Znyc.Admin.Security.Entitys; namespace Znyc.Admin.Security.Dtos { /// /// 输入对象模型 /// [AutoMap(typeof(Organize))] [Serializable] public class OrganizeInputDto : IInputDto { /// /// 主键 /// public long Id { get; set; } /// /// 父级id /// public long ParentId { get; set; } /// /// 所属层级 /// public long Layers { get; set; } /// /// 功能代码 /// public string EnCode { get; set; } /// /// 名称 /// public string FullName { get; set; } /// /// 类别Id /// public string CategoryId { get; set; } /// /// 上级Id /// public string ManagerId { get; set; } /// /// 区域Id /// public long AreaId { get; set; } /// /// 是否可以编辑 /// public bool AllowEdit { get; set; } /// /// 是否可以删除 /// public bool AllowDelete { get; set; } /// /// 排序 /// public int SortCode { get; set; } /// /// 备注 /// public string Description { get; set; } } }