using System; using LinqToDB.Mapping; namespace TradeUsedSale.Repositories.Models { public class DT_ShopifyUsedSaleOrder { [PrimaryKey, Identity] public int Id { get; set; } public string OrderId { get; set; } public string OrderNumber { get; set; } public string OrderName { get; set; } public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } public DateTime ProcessedAt { get; set; } /// /// 收件人 /// public string Name { get; set; } /// /// 收件人电话 /// public string Phone { get; set; } /// /// 完整地址 /// public string Full { get; set; } /// /// 地址1 /// public string Detail { get; set; } /// /// 地址2 /// public string Detail2 { get; set; } /// /// 城市 /// public string City { get; set; } /// /// 省 /// public string Province { get; set; } /// /// 省编码 /// public string ProvinceCode { get; set; } /// /// 邮编 /// public string Zip { get; set; } /// /// 国家 /// public string Country { get; set; } /// /// 国家编码 /// public string CountryCode { get; set; } public string Currency { get; set; } public decimal TotalPrice { get; set; } public decimal SubtotalPrice { get; set; } public decimal TotalTax { get; set; } public decimal TotalDiscounts { get; set; } public decimal ShippingPrice { get; set; } public string PaymentMethod { get; set; } public string FinancialStatus { get; set; } public decimal RefundedAmount { get; set; } /// /// 原始Json /// public string OriginJson { get; set; } /// /// 是否同步下单信息成功 /// public bool IsPlaceOrderSuccess { get; set; } /// /// 下单同步信息 /// public string PlaceOrderMessage { get; set; } } }