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; using System.Threading.Tasks;
namespace ICSSoft.Entity { public class ICSMOReceiveUntieModel { /// <summary>
/// 条码
/// </summary>
public string LotNo { get; set; } /// <summary>
/// 站点
/// </summary>
public string WorkPoint { get; set; }
/// <summary>
/// 容器编号
/// </summary>
public string ContainerCode { get; set; }
/// <summary>
/// 用户
/// </summary>
public string User { 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; }
} }
|