feat: 部门查询

This commit is contained in:
橙子
2023-02-10 19:49:28 +08:00
parent fdd1eda9ec
commit 5df1144cd0
2 changed files with 20 additions and 8 deletions

View File

@@ -7,16 +7,12 @@ using Yi.Framework.Ddd.Dtos;
namespace Yi.RBAC.Application.Contracts.Identity.Dtos
{
public class DeptGetListInputVo : PagedAndSortedResultRequestDto
public class DeptGetListInputVo : PagedAllResultRequestDto
{
public long Id { get; set; }
public DateTime CreationTime { get; set; } = DateTime.Now;
public long? CreatorId { get; set; }
public bool State { get; set; }
public string DeptName { get; set; }=string.Empty;
public string DeptCode { get; set; } = string.Empty;
public bool? State { get; set; }
public string? DeptName { get; set; }
public string? DeptCode { get; set; }
public string? Leader { get; set; }
public long ParentId { get; set; }
public string? Remark { get; set; }
}
}