DeliveryOrderRspModel.cs 447 B

123456789101112131415161718
  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 DeliveryOrderRspModel
  12. {
  13. public string ClientSerialNo { get; set; }
  14. public string OrderTime { get; set; }
  15. public List<WrDetailModel> wrDetails { get; set; }
  16. }
  17. }