using Muchinfo.MTPClient.Data.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model.Delivery { /// /// 交割申报请求 /// public class DeliveryOrderReqModel { public DateTime EntrustTime { get; set; } public ulong AccountID { get; set; } public uint XGoodsID { get; set; } public uint PGoodsID { get; set; } public uint P2GoodsID { get; set; } public uint DeliveryGoodsID { get; set; } public ulong XQty { get; set; } public ulong PQty { get; set; } public ulong P2Qty { get; set; } public ulong DeliveryQty { get; set; } public uint OperatorID { get; set; } public WrDetailModel wrDetail { get; set; } } }