You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace ICSSoft.Entity { public class ICSContainerLotModel {
/// <summary>
/// 操作人
/// </summary>
public string User { get; set; } /// <summary>
/// 操作时间
/// </summary>
public string MTime { get; set; } /// <summary>
/// 站点
/// </summary>
public string WorkPoint { get; set; } /// <summary>
/// 是否自动生成箱号
/// </summary>
public bool ifCreateContainer { get; set; }
public List<ICSContainerLotModelList> detail { get; set; }
}
public class ICSContainerLotModelList { /// <summary>
///物料条码
/// </summary>
public string LotNo { get; set; } /// <summary>
/// 容器编码
/// </summary>
public string ContainerCode { get; set; }
/// <summary>
/// 物料代码
/// </summary>
public string InvCode { get; set; }
/// <summary>
/// 数量
/// </summary>
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; } } }
|