using Newtonsoft.Json; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WCS.Mobox3.AnGang.Dtos.Request { public class MoboxRequest { #region 模板数据类 /// /// 模板数据类:标准出入库信息 /// public class BaseBoundInfo { /// /// 起点货位 /// public string startLoc { get; set; } /// /// 容器号 /// public string cntId { get; set; } /// /// 终点货位 /// public string endLoc { get; set; } } #endregion public class InboundInfo { /// /// 起点货位 /// [JsonProperty("StartLoc")] public string startLoc { get; set; } /// /// 终点货架(可选) /// [JsonProperty("Nrow")] public string endShelf { get; set; } } public class SelectLocationInfo { public string forklift_no { get; set; } ///// ///// 任务号 ///// //public string taskNo { get; set; } public string endLoc { get; set; } } /// /// 产品部分回库信息 /// public class PartInboundInfo { /// /// 起点位置 /// public string startLoc { get; set; } /// /// 终点位置 /// public string endLoc { get; set; } } /// /// 产品部分出库信息 /// public class PartOutboundInfo { /// /// 起点位置 /// public string startLoc { get; set; } /// /// 终点位置 /// public string endLoc { get; set; } } /// /// 盘点理货出库信息 /// public class CheckOutboundInfo { /// /// 起点位置 /// public string startLoc { get; set; } /// /// 终点位置 /// public string endLoc { get; set; } } /// /// 盘点理货回库信息 /// public class CheckInboundInfo { /// /// 起点位置 /// public string startLoc { get; set; } /// /// 终点位置 /// public string endLoc { get; set; } } } }