Files
Yi.Framework/Yi.Furion.Rbac/Yi.Furion.Rbac.Application/System/Dtos/Dept/DeptGetListInputVo.cs
2023-04-15 12:19:02 +08:00

15 lines
390 B
C#

using Yi.Framework.Infrastructure.Ddd.Dtos;
namespace Yi.Furion.Rbac.Application.System.Dtos.Dept
{
public class DeptGetListInputVo : PagedAllResultRequestDto
{
public long Id { get; set; }
public bool? State { get; set; }
public string DeptName { get; set; }
public string DeptCode { get; set; }
public string Leader { get; set; }
}
}