using System; using System.Collections.Generic; using TradeUsedSale.Enums; namespace TradeManageNew.Models.ShopifyUsedSale { public class OrderUsedSalePlatformPageDto { public int Id { get; set; } /// /// 产品Id /// public int ProductId { get; set; } /// /// 产品编码 /// public string ProductCode { get; set; } /// /// 产品图片 /// public string ProductImageUrl { get; set; } public string ProductName { get; set; } public string ProductEnName { get; set; } /// /// SKU ID /// public int SkuId { get; set; } /// /// SKU Code /// public string SkuCode { get; set; } /// /// 打印条码 /// public string BarCode { get; set; } /// /// 是否已打印 /// public bool IsPrinted { get; set; } /// /// 状态 /// public UsedSalePlatformStatus Status { get; set; } /// /// 仓库 /// public WarehouseLocation WarehouseLocation { get; set; } /// /// 库位Id /// public int WarehousePositionId { get; set; } /// /// 库位编码 /// public string WarehousePositionCode { get; set; } /// /// 拍照图片信息 /// public List ImageUrls { get; set; } /// /// 交易方式 /// public ShippingMethod? ShippingMethod { get; set; } /// /// 是否全新 /// public bool? IsNew { get; set; } /// /// 预约时间 /// public DateTime? AppointmentTime { get; set; } /// /// 创建时间 /// public DateTime CreationTime { get; set; } /// /// 创建人 /// public int CreatorId { get; set; } /// /// 推送至平台信息 /// public string PublishMessage { get; set; } public ShopifyUsedSaleOrderInfoDto ShopifyOrder { get; set; } /// /// TrackingCode /// public string TrackingCode { get; set; } /// /// imgList /// public string imgList { get; set; } /// /// outboundTrackCode /// public string outboundTrackCode { get; set; } } }