using System; namespace TradeManageNew.Models.ShopifyUsedSale { public class OrderUsedSaleApplyDto { public int Id { get; set; } /// /// 二手售卖商品打印条码 /// public string UsedSaleBarCode { get; set; } /// /// 服务类型 /// public string ServiceType { get; set; } /// /// 跟踪号 /// public string TrackingCode { get; set; } /// /// 运费 /// public decimal TotalNetCharge { get; set; } /// /// 创建时间 /// public DateTime CreationTime { get; set; } /// /// imgList /// public string imgList { get; set; } } }