namespace Kean.Application.Command.ViewModels { public class Batch { //箱号(膜卷号) public string serialno { get; set; } //物料编码 public string materialCode { get; set; } //物料名称 public string materialName { get; set; } //单位 public string unit { get; set; } //数量 public string quantity { get; set; } //工单号 public string workOrderNo { get; set; } //生产时间 //格式 yyyy-MM-dd public string productDate { get; set; } //质检状态 //N 不合格 Q 待检 Y 合格 M 免检 public string qualityState { get; set; } //物料类型 //正常物料:0(合格) 验证物料:1(待检) NG物料:2(不合格) public string materialType { get; set; } //模具号 //原材料库 public string mouldNo { get; set; } //成熟度 //原材料库 public string maturity { get; set; } //供应商批次、生产批次 public string productBatchNo { get; set; } //SAP批次 public string sapBatchNo { get; set; } //失效日期 //原材料库 public string expDate { get; set; } } }