using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ICSSoft.Entity
{
public class ICSMOReceiveUntieModel
{
///
/// 条码
///
public string LotNo { get; set; }
///
/// 站点
///
public string WorkPoint { get; set; }
///
/// 容器编号
///
public string ContainerCode { get; set; }
///
/// 用户
///
public string User { get; set; }
///
/// 操作类型(1:BS容器绑定,2:PDA容器绑定,3:BS条码绑定,4:PDA条码绑定,5:BS容器解绑,6:PDA容器解绑,7:BS条码解绑,8:PDA条码解绑)
///
public string Type { get; set; }
}
}