using System; using LinqToDB.Mapping; namespace TradeUsedSale.Repositories.Models { public class DT_OrderGoods { [PrimaryKey, Identity] public int Id { get; set; } /// /// 订单 id /// public int? OrderId { get; set; } /// /// 货物明细id /// public int? DetailId { get; set; } /// /// 货物明细数量 /// public int? GoodsNum { get; set; } /// /// 货物价格 /// public decimal? GoodsPrice { get; set; } public decimal? RMBMoney { get; set; } /// /// 货币代码 /// public string MoneyCode { get; set; } /// /// 锁定匹配库存数量 /// public int? LockNum { get; set; } /// /// 对应的采购单id /// public int? ChaseId { get; set; } /// /// 货物sku /// public string GoodsSKU { get; set; } /// /// 货物名称 /// public string GoodsName { get; set; } public string PostInfo { get; set; } public int? OutNum { get; set; } public string productImgUrl { get; set; } public string GoodsDesc { get; set; } public string GoodsCode { get; set; } public int? OldNum { get; set; } /// /// 加码分配的型号 /// public string OldTypeCode { get; set; } /// /// 加码分配原描述 /// public string OldTypeDesc { get; set; } public decimal? GoodsFee { get; set; } public decimal? TCFee { get; set; } public decimal? GoodsRate { get; set; } public decimal? Fee6 { get; set; } public decimal? Fee7 { get; set; } public decimal? Fee8 { get; set; } public decimal? GoodsOrderFee { get; set; } public decimal? Fee9 { get; set; } public string Sort1 { get; set; } public string Sort2 { get; set; } public string ItemOrderId { get; set; } public decimal? ckfee { get; set; } public decimal? mdfee { get; set; } public decimal? adfee { get; set; } public DateTime? ck_date { get; set; } } }