using System;
using System.Collections.Generic;
namespace GCAS.Dto
{
public class DataPickDto
{
///
/// 设备Id
///
public int DeviceId { get; set; }
///
/// 料口Id
///
public int EntranceId { get; set; }
///
/// 称重数据
///
public List Weights { get; set; }
}
public class WeightDto
{
///
/// 事件 ss:ffff
///
public DateTime Time { get; set; }
///
/// 重量
///
public int Weight { get; set; }
}
}