using System.Collections.Generic;
namespace Admin.Core.Model.ViewModels
{
///
/// 投料釜匹配完成传入参数
///
public class KettleView
{
///
/// 釜工位——主键
///
public int Station { get; set; }
///
/// 计划ID
///
public string PlanId { get; set; }
///
/// 投料釜条码
///
public string KCode { get; set; }
///
/// 状态 0:未扫描 1:匹配 2:报警
///
public int State { get; set; }
///
/// 投入物料详细
///
public List Child { get; set; }
}
///
/// 物料详细
///
public class MaterialList
{
///
/// 物料类型:整包、散装
///
public string MatType { get; set; }
///
/// 料桶条码
///
public string BarrelCode { get; set; }
///
/// 物料条码
///
public string MatCode { get; set; }
///
/// 物料名称
///
public string MatName { get; set; }
///
/// 实际物料重量
///
public double MatWeight { get; set; }
///
/// 投料整包完整信息
///
public string WholePackage { get; set; }
}
}