57 lines
1.2 KiB
C#
57 lines
1.2 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 月度门禁人员考勤统计输出
|
|||
|
/// </summary>
|
|||
|
public class InOutRecordStatisticOutput
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 项目id
|
|||
|
/// </summary>
|
|||
|
public string ProjectId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 单位id
|
|||
|
/// </summary>
|
|||
|
public string UnitId { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 人员id
|
|||
|
/// </summary>
|
|||
|
public string PersonId { get; set; }
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 打卡天数
|
|||
|
/// </summary>
|
|||
|
public int CheckInDays { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 缺勤天数
|
|||
|
/// </summary>
|
|||
|
public int AbsentDays { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 进场天数
|
|||
|
/// </summary>
|
|||
|
public int EntryDays { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 累计打卡天数
|
|||
|
/// </summary>
|
|||
|
public int AllCheckInDays { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 日打卡详情
|
|||
|
/// </summary>
|
|||
|
public List<DayInOutRecordStatistic> DayInOutRecordStatistic { get; set; }
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|