using System; using LinqToDB.Mapping; namespace TradeUsedSale.Repositories.Models { public class DT_OrderUsedSaleApply { [PrimaryKey, Identity] public int Id { get; set; } /// /// 二手售卖商品Id /// public int UsedSaleId { get; set; } /// /// 二手售卖商品打印条码 /// public string UsedSaleBarCode { get; set; } /// /// 服务类型 /// public string ServiceType { get; set; } /// /// 跟踪号 /// public string TrackingCode { get; set; } /// /// 运费 /// public decimal TotalNetCharge { get; set; } /// /// 原始Json /// public string OriginJson { get; set; } /// /// 创建时间 /// public DateTime CreationTime { get; set; } /// /// 是否已删除 /// public bool IsDeleted { get; set; } } }