DeliveryAuditNtfModel.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 DeliveryAuditNtfModel
  11. {
  12. //private MessageHead _Header = null;
  13. //public MessageHead Header
  14. //{
  15. // get { return _Header; }
  16. // set { _Header = value; }
  17. //}
  18. private int _RetCode = int.MinValue;
  19. public int RetCode
  20. {
  21. get { return _RetCode; }
  22. set { _RetCode = value; }
  23. }
  24. private long _OrderID = int.MinValue;
  25. public long OrderID
  26. {
  27. get { return _OrderID; }
  28. set { _OrderID = value; }
  29. }
  30. private uint _GoodsID = uint.MaxValue;
  31. public uint GoodsID
  32. {
  33. get { return _GoodsID; }
  34. set { _GoodsID = value; }
  35. }
  36. private uint _AccountID = uint.MaxValue;
  37. public uint AccountID
  38. {
  39. get { return _AccountID; }
  40. set { _AccountID = value; }
  41. }
  42. private uint _BuyOrSell = uint.MaxValue;
  43. public uint BuyOrSell
  44. {
  45. get { return _BuyOrSell; }
  46. set { _BuyOrSell = value; }
  47. }
  48. private double _OrderQty = int.MinValue;
  49. public double OrderQty
  50. {
  51. get { return _OrderQty; }
  52. set { _OrderQty = value; }
  53. }
  54. private int _Result;
  55. public int Result
  56. {
  57. get { return _Result; }
  58. set { _Result = value; }
  59. }
  60. private uint _OperatorID = uint.MaxValue;
  61. public uint OperatorID
  62. {
  63. get { return _OperatorID; }
  64. set { _OperatorID = value; }
  65. }
  66. }
  67. }