CheckDataListResponse.cs
1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
namespace HHECS.WorkHourStatistics.Dtos
{
public class CheckDataListResponse
{
public int PageIndex { get; set; }
public int PageSize { get; set; }
public bool NeedTotal { get; set; }
public int Total { get; set; }
public List<WorkRecordDto> DataList { get; set; } = new List<WorkRecordDto>();
}
public class WorkRecordDto
{
/// <summary>
/// 姓名
/// </summary>
public string PersonName { get; set; } = null!;
/// <summary>
/// 工号
/// </summary>
public string Number { get; set; } = null!;
public bool IsOnWork { get; set; }
/// <summary>
/// 打卡时间
/// </summary>
public string? CreateTime { get; set; }
/// <summary>
/// 上班、下班时间
/// </summary>
public string? BaseCheckTime { get; set; }
/// <summary>
/// 打卡地址
/// </summary>
public string LocationAddress { get; set; } = null!;
/// <summary>
/// 打卡日期
/// </summary>
public string CheckDate { get; set; } = null!;
}
}