You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
427 B
C#
22 lines
427 B
C#
6 months ago
|
namespace DS.WMS.Core.Sys.Dtos;
|
||
9 months ago
|
|
||
|
/// <summary>
|
||
|
/// 客户权限返回
|
||
|
/// </summary>
|
||
|
public class ClientPermissionRes
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键Id
|
||
|
/// </summary>
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 权限名称
|
||
|
/// </summary>
|
||
|
public string PermissionName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 权限实体
|
||
|
/// </summary>
|
||
|
public string PermissionEntity { get; set; }
|
||
|
}
|