131 lines
3.1 KiB
C#
131 lines
3.1 KiB
C#
|
|
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
|
|||
|
|
/// <summary>
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 创建时间
|
|||
|
|
/// <summary>
|
|||
|
|
public DateTime CreateTime { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 更新时间
|
|||
|
|
/// <summary>
|
|||
|
|
public DateTime UpdateTime { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 创建人ID
|
|||
|
|
/// <summary>
|
|||
|
|
public int CreatorId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 更新人ID
|
|||
|
|
/// <summary>
|
|||
|
|
public int UpdatorId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 软删除标记,0.代表正常,1.代表已删除
|
|||
|
|
/// <summary>
|
|||
|
|
public int DeleteTag { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 管理员id
|
|||
|
|
/// <summary>
|
|||
|
|
public int ManagerId { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 权限编码
|
|||
|
|
/// <summary>
|
|||
|
|
public string Permissioncode { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
public string Parentcode { get; set; }
|
|||
|
|
|
|||
|
|
public string Permissionlabel { get; set; }
|
|||
|
|
|
|||
|
|
public string Permissionurl { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 图标[50]
|
|||
|
|
/// </summary>
|
|||
|
|
public string Icon { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 激活图标
|
|||
|
|
/// </summary>
|
|||
|
|
public string Iconactivate { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否查看
|
|||
|
|
/// </summary>
|
|||
|
|
public Boolean AllowView { get; set; } = false;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否添加
|
|||
|
|
/// </summary>
|
|||
|
|
public Boolean AllowAdd { get; set; } = false;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否修改
|
|||
|
|
/// </summary>
|
|||
|
|
public Boolean AllowEdit { get; set; } = false;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否删除
|
|||
|
|
/// </summary>
|
|||
|
|
public Boolean AllowDel { get; set; } = false;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 显示排序
|
|||
|
|
/// </summary>
|
|||
|
|
public int Sortorder { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否收费
|
|||
|
|
/// </summary>
|
|||
|
|
public bool Ischarge { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 模块编码
|
|||
|
|
/// </summary>
|
|||
|
|
public string Nodecode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否新功能
|
|||
|
|
/// </summary>
|
|||
|
|
public bool isnew { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 系统标识
|
|||
|
|
/// </summary>
|
|||
|
|
public int Systemid { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string Appcodes { get; set; }
|
|||
|
|
|
|||
|
|
public IList<QueryPermissionResponse> Children { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|