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.

20 lines
380 B
C#

using System.ComponentModel.DataAnnotations;
namespace DS.WMS.Core.System.Dtos;
/// <summary>
///
/// </summary>
public class RolePermissionInput
{
/// <summary>
///
/// </summary>
[Required(ErrorMessage = "角色Id不能为空")]
public long RoleId { get; set; }
/// <summary>
///
/// </summary>
public long?[] PermissionIds { get; set; }
}