| 12345678910111213141516171819202122232425262728 |
- using Muchinfo.MTPClient.Data.Enums;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model.Delivery
- {
- /// <summary>
- /// 交割申报请求
- /// </summary>
- 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; }
- }
- }
|