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
377 B
C#

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