using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos.Cargoo { /// /// Cargoo推送当前状态枚举 /// public enum CargooStatusEnum { /// /// ShipmentSubmitted /// [Description("ShipmentSubmitted")] Submitted = 220, /// /// ShipmentConfirmed /// [Description("ShipmentConfirmed")] Confirmed = 230, /// /// ShipmentGateOut /// [Description("ShipmentGateOut")] GateOut = 310, /// /// ShipmentGateIn /// [Description("ShipmentGateIn")] GateIn = 320, /// /// Shipment Cancelled /// [Description("Shipment Cancelled")] Cancelled = 240, /// /// Shipment Rejected /// [Description("Shipment Rejected")] Rejected = 245, /// /// ShipmentDeparted /// [Description("ShipmentDeparted")] Shipped = 330, /// /// ShipmentArrived /// [Description("ShipmentArrived")] Arrived = 370, /// /// ShipmentDischarged /// [Description("ShipmentDischarged")] Discharged = 375, /// /// ShipmentContainersDepartedAtPod /// [Description("ShipmentContainersDepartedAtPod")] Delivered = 390, /// /// ShipmentReturned /// [Description("ShipmentReturned")] Completed = 396 } }