using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.MES.Models
{
public class MaterialLotListItem
{
///
///
///
public string materialLotCode { get; set; }
///
///
///
public string materialLotCodeLocator { get; set; }
}
public class IdentiftyListItem
{
///
/// 条码
///
public string identification { get; set; }
///
/// 质量状态
///
public string qualityStatus { get; set; }
///
/// 关联条码
///
public string qrCode { get; set; }
///
/// NG2信息,NG1信息
///
public string ngMessage { get; set; }
///
///
///
public List ngCode { get; set; }
///
///
///
public List materialLotList { get; set; }
}
public class SingleCellOutStation
{
///
///
///
public string siteCode { get; set; }
///
///
///
public string lineCode { get; set; }
///
///
///
public string equipNum { get; set; }
///
///
///
public string userName { get; set; }
///
///
///
public string productType { get; set; }
///
///
///
public string completeQty { get; set; }
///
///
///
public string containerCode { get; set; }
///
///
///
public int type { get; set; }
///
/// 原材料条码
///
public string materialCode { get; set; }
///
/// 产品条码
///
public List identiftyList { get; set; }
}
}