You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace Entity.Dto.Req
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 授权用户角色
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class UserRoleReq
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 角色Id集合
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<long> RoleIdList { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|