Files
Yi.Framework/Yi.Furion.Rbac/Yi.Furion.Rbac.Application/System/Dtos/Dept/DeptGetListInputVo.cs
2023-04-13 21:12:06 +08:00

17 lines
486 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; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
}
}