Files
juipnet/Services/Hncore.Pass.Manage/Response/ManagerToPermission/QueryPermissionResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

131 lines
3.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}