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 ICSContainerBind { /// <summary>
///容器编码
/// </summary>
public string ContainerCode { get; set; }
/// <summary>
/// 条码
/// </summary>
public string LotNo { get; set; } /// <summary>
/// 操作人
/// </summary>
public string User { get; set; } /// <summary>
/// 操作时间
/// </summary>
public string MTime { get; set; } /// <summary>
/// 站点
/// </summary>
public string WorkPoint { get; set; } /// <summary>
/// 操作类型(绑定/解绑)注:(开始任务/解除任务)为点击搬运时使用
/// </summary>
public string TransType { get; set; } /// <summary>
/// 绑定类型(货柜/窄巷道AGV/窄巷道叉车)
/// </summary>
public string ContainerType { get; set; } /// <summary>
/// 推荐库位(窄巷道叉车(木托盘))
/// </summary>
public string RecomendBinCode { get; set; } /// <summary>
/// 位置编码(AGV用)
/// </summary>
public string LocationCode { get; set; } } }
|