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