using Muchinfo.MTPClient.Data.Helper; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model.Delivery { /// /// 交割单仓单表 /// public class DeliveryDetailWR { #region SQL字段 // #endregion /// /// 仓单号 /// [PropertyDisc("wrcode")] public string WRCode { get; set; } /// /// AUTOID /// [PropertyDisc("AUTOID")] public long AUTOID { get; set; } /// /// 交割单 /// [PropertyDisc("DELIVERYID")] public long DELIVERYID { get; set; } /// /// 仓单Id /// [PropertyDisc("wrid")] public long WRID { get; set; } /// /// 数量 /// [PropertyDisc("deliveryqty")] public decimal DELIVERYQTY { get; set; } /// /// 仓单升贴水总额 /// [PropertyDisc("wrpricemore")] public decimal WRPRICEMOVE { get; set; } /// /// 单价仓单升贴水 /// [PropertyDisc("price")] public decimal PriceMove { get; set; } /// /// 关联仓单Id /// [PropertyDisc("RELATIONWRID")] public long RELATIONWRID { get; set; } /// /// 品牌 /// [PropertyDisc("brand")] public string Brand { get; set; } /// /// 等级 /// [PropertyDisc("goodlevel")] public string Rank { get; set; } /// /// 注册数量 /// [PropertyDisc("regqty")] public decimal Qty { get; set; } public string QtyDisplay { get { return Qty.ToString()+ GoodsunitName; } } /// /// 冻结数量 /// [PropertyDisc("freezeqty")] public decimal FreezeQty { get; set; } /// /// 兑付数量 /// [PropertyDisc("PayQty")] public decimal PayQty { get; set; } /// /// 单位 /// [PropertyDisc("GoodsUnitId")] public long GoodsUnitId { get; set; } /// /// 单位名称 /// [PropertyDisc("GoodsunitName")] public string GoodsunitName { get; set; } /// /// 存储仓库名称 /// [PropertyDisc("warehousename")] public string WareHouseName { get; set; } /// /// 货款 /// [PropertyDisc("deliveryamount")] public decimal deliveryamount { get; set; } /// /// 价格 /// [PropertyDisc("deliveryprice")] public decimal deliveryprice { get; set; } } }