using Hncore.Infrastructure.Data; using Hncore.Infrastructure.DDD; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Data; using System.Linq.Expressions; using Microsoft.EntityFrameworkCore; using Hncore.Infrastructure.WebApi; using Hncore.Pass.Manage.Request; using Hncore.Infrastructure.EntitiesExtension; using Hncore.Infrastructure.Extension; namespace Hncore.Pass.Manage.Response { public class QueryPermissionResponse { /// 用户数据库ID /// public int Id { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 更新时间 /// public DateTime UpdateTime { get; set; } /// /// 创建人ID /// public int CreatorId { get; set; } /// /// 更新人ID /// public int UpdatorId { get; set; } /// /// 软删除标记,0.代表正常,1.代表已删除 /// public int DeleteTag { get; set; } /// /// 管理员id /// public int ManagerId { get; set; } /// /// 权限编码 /// public string Permissioncode { get; set; } public string Parentcode { get; set; } public string Permissionlabel { get; set; } public string Permissionurl { get; set; } /// /// 图标[50] /// public string Icon { get; set; } /// /// 激活图标 /// public string Iconactivate { get; set; } /// /// 是否查看 /// public Boolean AllowView { get; set; } = false; /// /// 是否添加 /// public Boolean AllowAdd { get; set; } = false; /// /// 是否修改 /// public Boolean AllowEdit { get; set; } = false; /// /// 是否删除 /// public Boolean AllowDel { get; set; } = false; /// /// 显示排序 /// public int Sortorder { get; set; } /// /// 是否收费 /// public bool Ischarge { get; set; } /// /// 模块编码 /// public string Nodecode { get; set; } /// /// 是否新功能 /// public bool isnew { get; set; } /// /// 系统标识 /// public int Systemid { get; set; } /// /// /// public string Appcodes { get; set; } public IList Children { get; set; } } }