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
430 B
C#
22 lines
430 B
C#
namespace DS.WMS.Core.System.Dtos;
|
|
|
|
/// <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; }
|
|
} |