using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos.Cargoo { /// /// /// public class CargooShipmentReqDto { /// /// 订单ID /// public long bookingId { get; set; } /// /// 状态枚举 /// public CargooStatusEnum cargooStatusEnum { get; set; } } }