using System; using LinqToDB.Mapping; using TradeUsedSale.Enums; namespace TradeUsedSale.Repositories.Models { public class DT_OrderUsedSale { [PrimaryKey, Identity] public int Id { get; set; } /// /// 跟踪号 /// public string TrackingCode { get; set; } /// /// 订单Id /// public int OrderId { get; set; } /// /// 订单号 /// public string OrderCode { get; set; } /// /// SKU ID /// public int GoodsId { get; set; } /// /// SKU Code /// public string GoodsCode { get; set; } /// /// 数量 /// public int Quantity { get; set; } /// /// 仓库 /// public WarehouseLocation WarehouseLocation { get; set; } /// /// 库位编码 /// public string WarehousePositionCode { get; set; } /// /// 扫描时间 /// public DateTime ScanTime { get; set; } /// /// 扫描人 /// public int ScanUserId { get; set; } /// /// 图片信息 /// public string ImageUrls { get; set; } /// /// 创建时间 /// public DateTime CreationTime { get; set; } /// /// 创建人 /// public int CreatorId { get; set; } } }