40 lines
1.4 KiB
C#
40 lines
1.4 KiB
C#
|
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<int> NavigatePageNums { get; set; } = new List<int>();
|
|||
|
public int NavigateFirstPage { get; set; }
|
|||
|
public int NavigateLastPage { get; set; }
|
|||
|
public List<DeviceUserFaceVo> List { get; set; } = new List<DeviceUserFaceVo>();
|
|||
|
}
|
|||
|
|
|||
|
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;
|
|||
|
}
|
|||
|
}
|