using LinqToDB.Mapping; namespace TradeUsedSale.Repositories.Models { /// /// 二手商品Shopify订单明细表 /// public class DT_ShopifyUsedSaleOrderItem { [PrimaryKey, Identity] public int Id { get; set; } public int DtShopifyUsedSaleOrderId { get; set; } public string OriginSku { get; set; } public string Sku { get; set; } public string ProductCode { get; set; } public int Quantity { get; set; } public decimal Price { get; set; } public string Title { get; set; } public string VariantTitle { get; set; } public string ProductId { get; set; } public string VariantId { get; set; } public string Image { get; set; } public string ShippingMethod { get; set; } } }