using System; using LinqToDB.Mapping; using TradeUsedSale.Enums; namespace TradeUsedSale.Repositories.Models { public class DT_OrderUsedSalePlatform { [PrimaryKey, Identity] public int Id { get; set; } /// /// 产品Id /// public int ProductId { get; set; } /// /// 产品编码 /// public string ProductCode { get; set; } /// /// SKU ID /// public int SkuId { get; set; } /// /// SKU Code /// public string SkuCode { get; set; } /// /// 打印条码 /// public string BarCode { get; set; } /// /// 是否已打印 /// public bool IsPrinted { get; set; } /// /// 状态 /// public UsedSalePlatformStatus Status { get; set; } /// /// 仓库 /// public WarehouseLocation WarehouseLocation { get; set; } /// /// 库位Id /// public int WarehousePositionId { get; set; } /// /// 库位编码 /// public string WarehousePositionCode { get; set; } /// /// 图片信息 /// public string ImageUrls { get; set; } /// /// 交易方式 /// public ShippingMethod? ShippingMethod { get; set; } /// /// 是否全新 /// public bool? IsNew { get; set; } /// /// 预约时间 /// public DateTime? AppointmentTime { get; set; } /// /// 创建时间 /// public DateTime CreationTime { get; set; } /// /// 创建人 /// public int CreatorId { get; set; } /// /// 修改时间 /// public DateTime? LastModificationTime { get; set; } /// /// 修改人 /// public int? LastModifierId { get; set; } /// /// 推送至平台信息 /// public string PublishMessage { get; set; } /// /// 服务类型 /// public string ServiceType { get; set; } /// /// 跟踪号 /// public string TrackingCode { get; set; } /// /// 运费 /// public decimal TotalNetCharge { get; set; } /// /// imgList /// public string imgList { get; set; } /// /// outboundTrackCode /// public string outboundTrackCode { get; set; } } }