using HH.WMS.Entitys.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Basic { public class TrayOnShelfEntity : BaseEntity { /// /// 托盘码 /// public string CN_S_TRAY_CODE { get; set; } /// /// 建议货位 /// public string CN_S_LOCATION_CODE { get; set; } /// /// 分拣台(有值的情况下,属于自动化上架,需要生成任务) /// public string CN_S_DEVICE_NO { get; set; } /// /// 目的库区 /// public string CN_S_END_AREA_CODE { get; set; } /// /// 任务类型 /// public string CN_S_TASK_TYPE { get; set; } /// /// 是否需要绑定托盘与货位的关系 /// public Boolean BIND_TRAY_LOCATION { get; set; } /// /// 项目编码 /// public string projectCode { get; set; } /// /// 入库方式:正常入库、其他入库 /// public string IN_STOCK_TYPE { get; set; } /// /// 物料编码 /// public string CN_S_ITEM_CODE { get; set; } /// /// 托盘规格 /// public string CN_S_TRAY_SPEC { get; set; } /// /// 仓库编码 /// public string CN_S_STOCK_CODE { get; set; } } }