WrPairRspModel.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Muchinfo.MTPClient.Data.Model.Delivery
  6. {
  7. /// <summary>
  8. /// 查询配对仓单应答
  9. /// </summary>
  10. public class WrPairRspModel
  11. {
  12. private int _RetCode = int.MinValue;
  13. public int RetCode
  14. {
  15. get { return _RetCode; }
  16. set { _RetCode = value; }
  17. }
  18. private string _RetDesc = "";
  19. public string RetDesc
  20. {
  21. get { return _RetDesc; }
  22. set { _RetDesc = value; }
  23. }
  24. private long _TradeGoodsId;
  25. public long TradeGoodsId
  26. {
  27. get { return _TradeGoodsId; }
  28. set { _TradeGoodsId = value; }
  29. }
  30. private List<WrPairDetailModel> _WrPairDetails = new List<WrPairDetailModel>();
  31. public List<WrPairDetailModel> WrPairDetails
  32. {
  33. get { return _WrPairDetails; }
  34. set { _WrPairDetails = value; }
  35. }
  36. }
  37. }