You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.8 KiB
C#
72 lines
1.8 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// Cargoo推送当前状态枚举
|
|
/// </summary>
|
|
public enum CargooStatusEnum
|
|
{
|
|
/// <summary>
|
|
/// ShipmentSubmitted
|
|
/// </summary>
|
|
[Description("ShipmentSubmitted")]
|
|
Submitted = 220,
|
|
/// <summary>
|
|
/// ShipmentConfirmed
|
|
/// </summary>
|
|
[Description("ShipmentConfirmed")]
|
|
Confirmed = 230,
|
|
/// <summary>
|
|
/// ShipmentGateOut
|
|
/// </summary>
|
|
[Description("ShipmentGateOut")]
|
|
GateOut = 310,
|
|
/// <summary>
|
|
/// ShipmentGateIn
|
|
/// </summary>
|
|
[Description("ShipmentGateIn")]
|
|
GateIn = 320,
|
|
/// <summary>
|
|
/// Shipment Cancelled
|
|
/// </summary>
|
|
[Description("Shipment Cancelled")]
|
|
Cancelled = 240,
|
|
/// <summary>
|
|
/// Shipment Rejected
|
|
/// </summary>
|
|
[Description("Shipment Rejected")]
|
|
Rejected = 245,
|
|
/// <summary>
|
|
/// ShipmentDeparted
|
|
/// </summary>
|
|
[Description("ShipmentDeparted")]
|
|
Shipped = 330,
|
|
/// <summary>
|
|
/// ShipmentArrived
|
|
/// </summary>
|
|
[Description("ShipmentArrived")]
|
|
Arrived = 370,
|
|
/// <summary>
|
|
/// ShipmentDischarged
|
|
/// </summary>
|
|
[Description("ShipmentDischarged")]
|
|
Discharged = 375,
|
|
/// <summary>
|
|
/// ShipmentContainersDepartedAtPod
|
|
/// </summary>
|
|
[Description("ShipmentContainersDepartedAtPod")]
|
|
Delivered = 390,
|
|
/// <summary>
|
|
/// ShipmentReturned
|
|
/// </summary>
|
|
[Description("ShipmentReturned")]
|
|
Completed = 396
|
|
}
|
|
}
|