using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.OFILM { public class MEAttendance { /// /// 部门名称 /// public string DeptName { get; set; } /// /// 日期 /// public DateTime Time { get; set; } /// /// 人员身份 /// public string EmpType { get; set; } /// /// 系统人力 /// public string OnWorkNum { get; set; } /// /// 出勤人力 /// public string OnJobNum { get; set; } /// /// 出勤率 /// public string Rate { get; set; } } }