using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YD_XinWei.Commons.Dto.Open { public class FaceListOfDevicePageDto { public int Total { get; set; } public int PageNum { get; set; } public int PageSize { get; set; } public int Size { get; set; } public int StartRow { get; set; } public int EndRow { get; set; } public int Pages { get; set; } public int PrePage { get; set; } public int NextPage { get; set; } public bool IsFirstPage { get; set; } public bool IsLastPage { get; set; } public bool HasPreviousPage { get; set; } public bool HasNextPage { get; set; } public int NavigatePages { get; set; } public List NavigatePageNums { get; set; } = new List(); public int NavigateFirstPage { get; set; } public int NavigateLastPage { get; set; } public List List { get; set; } = new List(); } public class DeviceUserFaceVo { public int UserId { get; set; } public int FaceType { get; set; } public string FaceUrl { get; set; } = string.Empty; public string FaceId { get; set; } = string.Empty; public string PersonId { get; set; } = string.Empty; } }