using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model.Delivery { /// /// 申报卖交割仓单信息 /// public class WrDetailModel { public ulong AccountID { get; set; } public ulong Qty { get; set; } public uint BrandID { get; set; } public uint QualityID { get; set; } public uint StandardID { get; set; } public uint WarehouseID { get; set; } public uint DeliveryMonthID { get; set; } public uint WRPositionID { get; set; } } }