using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.WMS { /// /// 出入库完成反馈(WCS推送完成状态给WMS) /// public class WMSInOutBoundCompleteFeedback { /// /// 任务号 /// public string taskCode { get; set; } /// /// 上游错误描述 /// public string memo { get; set; } /// /// 上游状态码 /// public string custStatus { get; set; } /// /// 任务状态:1-执行中,2-完成,3-失败 4-起点完成 /// public int status { get; set; } /// /// 容器编码 /// public string containerCode { get; set; } /// /// 起点位置 /// public string fromStationCode { get; set; } /// /// 终点位置 /// public string toLocationCode { get; set; } /// /// 业务类型 /// 1-面料;2-成品;3-裁剪;4-配套 /// //public int? businessType { get; set; } /// /// 完成类型 /// 1-自动完成;2-手动完成 /// //public int completeType { get; set; } = 1; } }