Files
Yi.Framework/Yi.Furion.Net6/Yi.Furion.Application/Rbac/Dtos/User/UserGetListInputVo.cs
2023-04-15 17:35:22 +08:00

19 lines
425 B
C#

using Yi.Framework.Infrastructure.Ddd.Dtos;
namespace Yi.Furion.Application.Rbac.Dtos.User
{
public class UserGetListInputVo : PagedAllResultRequestDto
{
public string Name { get; set; }
public string UserName { get; set; }
public long? Phone { get; set; }
public bool? State { get; set; }
public long? DeptId { get; set; }
public string Ids { get; set; }
}
}