using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.MES.Models
{
public class WmsUpload
{
///
/// 所属仓库
///
public string warehouseCode { get; set; }
///
/// 货主
///
public string customerCode { get; set; }
///
/// 设备编码
///
public string equipmentCode { get; set; }
///
/// 设备名称
///
public string equipmentName { get; set; }
///
/// 底托(卡板)
///
public string trayLabel { get; set; }
///
/// 详细信息
///
public List innerBoxLabelList { get; set; }
}
public class InnerBoxLabelInfo
{
///
/// 外箱标签(宝马层托)托盘码
///
public string outerBoxLabel { get; set; }
///
/// 内箱标签,电芯码
///
public string innerBoxLabel { get; set; }
///
/// 质检结果,N-良品 Y-不良品
///
public string iqcState { get; set; }
///
/// 电芯位置,G11需传该字段
///
public string batteriesLocation { get; set; }
}
}