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.

25 lines
559 B
C#

using System.ComponentModel.DataAnnotations;
namespace DS.WMS.Core.Sys.Dtos;
/// <summary>
/// 租户模块授权请求
/// </summary>
public class TenantPermissionReq
{
/// <summary>
///租户Id
/// </summary>
[Required(ErrorMessage = "租户Id不能为空")]
public long TenantId { get; set; }
/// <summary>
/// 授权Ids
/// </summary>
public List<long> PermissionIds { get; set; }
/// <summary>
/// 模块授权列表
/// </summary>
public List<PermissionAuth> PermissionAuthList { get; set; }
}