using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.Entitys.External
{
[Name("货位的绑定与解绑")]
public class LocationTrayItmRelEntity
{
public string stockCode { get; set; }
public string location { get; set; }
public string trayCode { get; set; }
///
/// 传入绑定或解绑的系统名称
///
public string sysName { get; set; }
///
/// 1:绑定托盘 2:解绑托盘
///
public int type { get; set; }
///
/// 1:删除物料 2:不删除物料
///
public int unBindDelItem { get; set; }
///
/// 1:满 2:不满 3:空
///
public int isFull { get; set; }
public List itemData { get; set; }
}
}