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.
46 lines
1.2 KiB
46 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
public class ICSContainerConModel
|
|
{
|
|
|
|
/// <summary>
|
|
/// 操作人
|
|
/// </summary>
|
|
public string User { get; set; }
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
public string MTime { get; set; }
|
|
/// <summary>
|
|
/// 站点
|
|
/// </summary>
|
|
public string WorkPoint { get; set; }
|
|
/// <summary>
|
|
/// 操作类型(1:BS容器绑定,2:PDA容器绑定,3:BS条码绑定,4:PDA条码绑定,5:BS容器解绑,6:PDA容器解绑,7:BS条码解绑,8:PDA条码解绑)
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
/// <summary>
|
|
/// 父容器编码
|
|
/// </summary>
|
|
public string ContainerCode { get; set; }
|
|
|
|
public List<ICSContainerConModelList> detail { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
public class ICSContainerConModelList
|
|
{
|
|
/// <summary>
|
|
/// 容器编码
|
|
/// </summary>
|
|
public string ContainerCode { get; set; }
|
|
|
|
}
|
|
}
|