using System;
namespace GCAS.Dto
{
public class RecordDto
{
public int Id { get; set; }
///
/// 序号
///
public string Number { get; set; }
///
/// 班组Id
///
public int Team { get; set; }
///
/// 班组名称
///
public string TeamName { get; set; }
///
/// 毛重
///
public float GrossWeight { get; set; }
///
/// 皮重
///
public float TareWeight { get; set; }
///
/// 净重
///
public float NetWeight { get; set; }
///
/// 时间
///
public DateTime Time { get; set; }
///
/// 设备Id
///
public int Device { get; set; }
///
/// 料口Id
///
public int Entrance { get; set; }
///
/// 设备名称
///
public string DeviceName { get; set; }
///
/// 料口名称
///
public string EntranceName { get; set; }
///
/// 最后50条实时重量数据
///
//public string RecordData { get; set; }
///
/// 有效数据
///
//public string EffectData { get; set; }
}
}