| 123456789101112131415161718 |
- 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 DeliveryOrderRspModel
- {
- public string ClientSerialNo { get; set; }
- public string OrderTime { get; set; }
- public List<WrDetailModel> wrDetails { get; set; }
- }
- }
|