OrderTime.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntOrder.proto
  5. namespace Proto\Api;
  6. use Google\Protobuf\Internal\GPBType;
  7. use Google\Protobuf\Internal\RepeatedField;
  8. use Google\Protobuf\Internal\GPBUtil;
  9. /**
  10. * 订单相关的时间
  11. *
  12. * Generated from protobuf message <code>proto.api.OrderTime</code>
  13. */
  14. class OrderTime extends \Google\Protobuf\Internal\Message
  15. {
  16. /**
  17. * 下单时间 时间戳 秒
  18. *
  19. * Generated from protobuf field <code>int32 ordering_time = 1;</code>
  20. */
  21. protected $ordering_time = 0;
  22. /**
  23. * 支付/购买时间 时间戳 秒
  24. *
  25. * Generated from protobuf field <code>int32 pay_time = 2;</code>
  26. */
  27. protected $pay_time = 0;
  28. /**
  29. * Constructor.
  30. *
  31. * @param array $data {
  32. * Optional. Data for populating the Message object.
  33. *
  34. * @type int $ordering_time
  35. * 下单时间 时间戳 秒
  36. * @type int $pay_time
  37. * 支付/购买时间 时间戳 秒
  38. * }
  39. */
  40. public function __construct($data = NULL) {
  41. \GPBMetadata\Api\EntOrder::initOnce();
  42. parent::__construct($data);
  43. }
  44. /**
  45. * 下单时间 时间戳 秒
  46. *
  47. * Generated from protobuf field <code>int32 ordering_time = 1;</code>
  48. * @return int
  49. */
  50. public function getOrderingTime()
  51. {
  52. return $this->ordering_time;
  53. }
  54. /**
  55. * 下单时间 时间戳 秒
  56. *
  57. * Generated from protobuf field <code>int32 ordering_time = 1;</code>
  58. * @param int $var
  59. * @return $this
  60. */
  61. public function setOrderingTime($var)
  62. {
  63. GPBUtil::checkInt32($var);
  64. $this->ordering_time = $var;
  65. return $this;
  66. }
  67. /**
  68. * 支付/购买时间 时间戳 秒
  69. *
  70. * Generated from protobuf field <code>int32 pay_time = 2;</code>
  71. * @return int
  72. */
  73. public function getPayTime()
  74. {
  75. return $this->pay_time;
  76. }
  77. /**
  78. * 支付/购买时间 时间戳 秒
  79. *
  80. * Generated from protobuf field <code>int32 pay_time = 2;</code>
  81. * @param int $var
  82. * @return $this
  83. */
  84. public function setPayTime($var)
  85. {
  86. GPBUtil::checkInt32($var);
  87. $this->pay_time = $var;
  88. return $this;
  89. }
  90. }