using System; using System.Collections.Generic; using TradeUsedSale.Enums; namespace TradeManageNew.Models.Shage { public class GetPickupOrderUsedSalePlatformDto { public int Id { get; set; } /// /// 产品Id /// public int ProductId { get; set; } /// /// 产品编码 /// public string ProductCode { get; set; } /// /// 产品描述 /// public string ProductDescription { 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 CreationTime { get; set; } /// /// 创建人 /// public int CreatorId { get; set; } } }