using System;
using System.Collections.Generic;
using System.Text;
namespace DllUfpEntity.Dto
{
public class StaffReportLogDto
{
public int No { get; set; }
public string StaffCode { get; set; }
public string StaffName { get; set; }
public int NameRowSpan { get; set; }
public bool RenderName { get; set; }
public int TotalCount { get; set; }
public string Date { get; set; }
public int DateCount { get; set; }
public int DateRowSpan { get; set; }
public bool RenderDate { get; set; }
public string ReportName { get; set; }
public int Count { get; set; }
///
/// 部门
///
public string Department { get; set; }
}
///
/// 员工职位信息
///
public class EmployeeInfo
{
///
/// 工号
///
public string StaffCode { get; set; }
///
/// 部门
///
public string Dept { get; set; }
///
/// 职位
///
public string Duty { get; set; }
///
/// 职级
///
public string FLevel { get; set; }
}
}