using System;
using System.Collections.Generic;
using System.Text;
namespace HKLib.Dto
{
///
/// 表统计
///
public class ReportCountDto
{
///
/// 姓名
///
public string Name { get; set; }
///
/// 手机
///
public string Phone { get; set; }
///
/// 时间
///
public string Date { get; set; }
///
/// 机构
///
public string Tag { get; set; }
///
/// 早
///
public int AMCount { get; set; }
///
/// 中
///
public int PMCount { get; set; }
///
/// 晚
///
public int ATCount { get; set; }
///
/// 总计
///
public int TotalCount { get; set; }
public decimal AM { get; set; }
public decimal PM { get; set; }
public decimal AT { get; set; }
public decimal Total { get; set; }
}
}