using System.Collections.Generic;
namespace GCAS.Dto
{
public class ReportDto
{
///
/// 斗数
///
public int Count { get; set; }
///
/// 净重
///
public double TotalWeight { get; set; }
///
/// 时间
///
public string Time { get; set; }
///
/// 班组
///
public Dictionary Team { get; set; }
///
/// 设备
///
public Dictionary Device { get; set; }
///
/// 料口
///
public Dictionary Entrance { get; set; }
}
}