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.
29 lines
586 B
29 lines
586 B
4 weeks ago
|
using System;
|
||
|
|
||
|
namespace BaseService.RelationData.Dto
|
||
|
{
|
||
|
public class BranchPermissionDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 分支ID
|
||
|
/// </summary>
|
||
|
public Guid BranchId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 分支机构名称
|
||
|
/// </summary>
|
||
|
public string BranchIdToName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 权限名称
|
||
|
/// </summary>
|
||
|
public string PermissName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 角色名称
|
||
|
/// </summary>
|
||
|
public string ProviderKey { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|