using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.External { /// /// 接收出库信息 /// public class OutWorkEntity { /// /// 托盘码 /// public string trayCode { get; set; } /// /// 起点 /// public string startBit { get; set; } /// /// 终点库区 /// public string endArea { get; set; } /// /// 终点 /// public string endBit { get; set; } /// /// 优先级 /// public int priority { get; set; } } }