| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model.Delivery
- {
- /// <summary>
- /// 查询配对仓单应答
- /// </summary>
- public class WrPairRspModel
- {
- private int _RetCode = int.MinValue;
-
- public int RetCode
- {
- get { return _RetCode; }
- set { _RetCode = value; }
- }
- private string _RetDesc = "";
-
- public string RetDesc
- {
- get { return _RetDesc; }
- set { _RetDesc = value; }
- }
- private long _TradeGoodsId;
-
- public long TradeGoodsId
- {
- get { return _TradeGoodsId; }
- set { _TradeGoodsId = value; }
- }
- private List<WrPairDetailModel> _WrPairDetails = new List<WrPairDetailModel>();
- public List<WrPairDetailModel> WrPairDetails
- {
- get { return _WrPairDetails; }
- set { _WrPairDetails = value; }
- }
- }
- }
|