using System; using LinqToDB.Mapping; using TradeUsedSale.Enums; namespace TradeUsedSale.Repositories.Models { public class DT_OrderUsedSalePlatform { [PrimaryKey, Identity] public int Id { get; set; } public int OrderUsedSaleId { get; set; } /// /// 打印条码 /// public string BarCode { get; set; } /// /// 是否已推送 /// public bool IsPublished { get; set; } /// /// 交易方式 /// public ShippingMethod? ShippingMethod { get; set; } /// /// 是否全新 /// public bool? IsNew { get; set; } /// /// 创建时间 /// public DateTime CreationTime { get; set; } /// /// 创建人 /// public int CreatorId { get; set; } /// /// 修改时间 /// public DateTime? LastModificationTime { get; set; } /// /// 修改人 /// public int? LastModifierId { get; set; } } }