using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Entity
{
public class ICSContainerLotModel
{
///
/// 操作人
///
public string User { get; set; }
///
/// 操作时间
///
public string MTime { get; set; }
///
/// 站点
///
public string WorkPoint { get; set; }
///
/// 是否自动生成箱号
///
public bool ifCreateContainer { get; set; }
public List detail { get; set; }
}
public class ICSContainerLotModelList
{
///
///物料条码
///
public string LotNo { get; set; }
///
/// 容器编码
///
public string ContainerCode { get; set; }
///
/// 物料代码
///
public string InvCode { get; set; }
///
/// 数量
///
public string Quantity { get; set; }
public string ProjectCode { get; set; }
public string BatchCode { get; set; }
public string Version { get; set; }
public string Brand { get; set; }
public string cFree1 { get; set; }
public string cFree2 { get; set; }
public string cFree3 { get; set; }
public string cFree4 { get; set; }
public string cFree5 { get; set; }
public string cFree6 { get; set; }
public string cFree7 { get; set; }
public string cFree8 { get; set; }
public string cFree9 { get; set; }
public string cFree10 { get; set; }
}
}