ReceiveConfirmRspModel.cs 794 B

1234567891011121314151617181920212223242526272829303132333435
  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 ReceiveConfirmRspModel
  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 _DeliveryId;
  25. public long DeliveryId
  26. {
  27. get { return _DeliveryId; }
  28. set { _DeliveryId = value; }
  29. }
  30. }
  31. }