DeliveryOrderReqModel.cs 836 B

12345678910111213141516171819202122232425262728
  1. using Muchinfo.MTPClient.Data.Enums;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Muchinfo.MTPClient.Data.Model.Delivery
  7. {
  8. /// <summary>
  9. /// 交割申报请求
  10. /// </summary>
  11. public class DeliveryOrderReqModel
  12. {
  13. public DateTime EntrustTime { get; set; }
  14. public ulong AccountID { get; set; }
  15. public uint XGoodsID { get; set; }
  16. public uint PGoodsID { get; set; }
  17. public uint P2GoodsID { get; set; }
  18. public uint DeliveryGoodsID { get; set; }
  19. public ulong XQty { get; set; }
  20. public ulong PQty { get; set; }
  21. public ulong P2Qty { get; set; }
  22. public ulong DeliveryQty { get; set; }
  23. public uint OperatorID { get; set; }
  24. public WrDetailModel wrDetail { get; set; }
  25. }
  26. }