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