You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
686 B
25 lines
686 B
namespace PermissionManagement.Api.DDD.Contracts.Dtos;
|
|
|
|
public class PermissionGrantDto
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public Guid Id { get; set; }
|
|
/// <summary>
|
|
/// R = 角色 ,UO开启角色上没有的 UD禁用角色上的
|
|
/// </summary>
|
|
public string ProviderName { get; set; }
|
|
/// <summary>
|
|
/// 权限名称 权限组_权限_子权限
|
|
/// </summary>
|
|
public string PermissionName { get; set; }
|
|
/// <summary>
|
|
/// 角色Id 或者 用户Id
|
|
/// </summary>
|
|
public Guid ProviderKey { get; set; }
|
|
/// <summary>
|
|
/// 创造时间。
|
|
/// </summary>
|
|
public DateTime CreationTime { get; set; }
|
|
}
|
|
|