feat:添加角色授权用户

This commit is contained in:
陈淳
2023-05-23 19:29:56 +08:00
parent dcbd729944
commit 22fab8dee0
10 changed files with 174 additions and 48 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Infrastructure.Ddd.Dtos;
namespace Yi.Furion.Core.Rbac.Dtos.Role
{
public class RoleAuthUserCreateOrDeleteInput
{
[Required]
public long RoleId { get; set; }
[Required]
public List<long> UserIds { get; set; }
}
}

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Infrastructure.Ddd.Dtos;
namespace Yi.Furion.Core.Rbac.Dtos.Role
{
public class RoleAuthUserGetListInput: PagedAndSortedResultRequestDto
{
public string? UserName { get; set; }
public long? Phone { get; set; }
}
}