using AUCMA.STORE.Entity.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AUCMA.STORE.Entity.DTO { /// /// 出入库任务 /// public class TaskDTO { /// /// 任务编号 /// public string taskCode { get; set; } /// /// 堆垛机编号 /// public string pilerCode { get; set; } /// /// 箱体编码 /// public string boxCode { get; set; } /// /// 门体/物料编码 /// public string materialCode { get; set; } /// /// 物料类型 /// public string materialType { get; set; } /// /// 仓库编码 /// public string storeCode { get; set; } /// /// 库位编号 /// public string locationCode { get; set; } /// /// 库位区域 0:左;1:右 /// public LocationArea locationArea { get; set; } /// /// 库位标识 /// public string locationIndex { get; set; } /// /// 所在排 /// public int row { get; set; } /// /// 所在列 /// public int line { get; set; } /// /// 所在层 /// public int tier { get; set; } /// /// 任务类型 0:入库;1:出库 /// public TaskType taskType { get; set; } /// /// 操作类型 /// public OperationType operationType { get; set; } /// /// 任务状态 /// public Enums.TaskStatus taskStatus { get; set; } /// /// 返回标识 /// public string returnFlag { get; set; } /// /// 开始时间 /// public DateTime? beginTime { get; set; } /// /// 结束时间 /// public DateTime? endTime { get; set; } /// /// 记录时间 /// public DateTime recordTime { get; set; } #region PLC指令封装 public int plcCode { get; set; } /// /// 堆垛机任务号 /// public int pilerTaskCode { get; set; } /// /// 堆垛机任务编号 /// public int pilerTaskType { get; set; } /// /// 入库站台号 /// public int inStorePlatformCode { get; set; } /// /// 取货巷道 /// public int claimGoods { get; set; } /// /// 卸货巷道 /// public int unload { get; set; } /// /// 出库站台号 /// public int outStorePlatformCode { get; set; } /// /// 堆垛机取货排 /// public int pilerClaimGoodsRows { get; set; } /// /// 堆垛机取货列 /// public int pilerClaimGoodsLine { get; set; } /// /// 堆垛机取货层 /// public int pilerClaimGoodsTier { get; set; } /// /// 堆垛机卸货排 /// public int pilerUnloadRows { get; set; } /// /// 堆垛机卸货列 /// public int pilerUnloadLine { get; set; } /// /// 堆垛机卸货层 /// public int pilerUnloadTier { get; set; } /// /// 货物尺寸 /// public int goodsSize { get; set; } /// /// 货物高度 /// public int goodsHeight { get; set; } /// /// 货物重量 /// public int goodsWeight { get; set; } /// /// 托盘号 /// public int trayCode { get; set; } /// /// 取放车 /// public int takePutTheCar { get; set; } /// /// 指令校验 /// public int verify { get; set; } /// /// 堆垛机可以出叉 /// public int exitFork { get; set; } /// /// 系统急停 /// public int stop { get; set; } #endregion } }