EntOrderContract.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntOrderContract.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.EntOrderContract</code>
  13. */
  14. class EntOrderContract extends \Google\Protobuf\Internal\Message
  15. {
  16. /**
  17. * 合同对应订单的订单信息
  18. *EntOrder order_sn = 1;
  19. * 合同编号
  20. *
  21. * Generated from protobuf field <code>string contract_sn = 1;</code>
  22. */
  23. protected $contract_sn = '';
  24. /**
  25. * 合同标题
  26. *
  27. * Generated from protobuf field <code>string contract_title = 2;</code>
  28. */
  29. protected $contract_title = '';
  30. /**
  31. * 合同详情
  32. *
  33. * Generated from protobuf field <code>.proto.api.OrderContractDetail contract_detail = 3;</code>
  34. */
  35. protected $contract_detail = null;
  36. /**
  37. * Constructor.
  38. *
  39. * @param array $data {
  40. * Optional. Data for populating the Message object.
  41. *
  42. * @type string $contract_sn
  43. * 合同对应订单的订单信息
  44. * EntOrder order_sn = 1;
  45. * 合同编号
  46. * @type string $contract_title
  47. * 合同标题
  48. * @type \Proto\Api\OrderContractDetail $contract_detail
  49. * 合同详情
  50. * }
  51. */
  52. public function __construct($data = NULL) {
  53. \GPBMetadata\Api\EntOrderContract::initOnce();
  54. parent::__construct($data);
  55. }
  56. /**
  57. * 合同对应订单的订单信息
  58. *EntOrder order_sn = 1;
  59. * 合同编号
  60. *
  61. * Generated from protobuf field <code>string contract_sn = 1;</code>
  62. * @return string
  63. */
  64. public function getContractSn()
  65. {
  66. return $this->contract_sn;
  67. }
  68. /**
  69. * 合同对应订单的订单信息
  70. *EntOrder order_sn = 1;
  71. * 合同编号
  72. *
  73. * Generated from protobuf field <code>string contract_sn = 1;</code>
  74. * @param string $var
  75. * @return $this
  76. */
  77. public function setContractSn($var)
  78. {
  79. GPBUtil::checkString($var, True);
  80. $this->contract_sn = $var;
  81. return $this;
  82. }
  83. /**
  84. * 合同标题
  85. *
  86. * Generated from protobuf field <code>string contract_title = 2;</code>
  87. * @return string
  88. */
  89. public function getContractTitle()
  90. {
  91. return $this->contract_title;
  92. }
  93. /**
  94. * 合同标题
  95. *
  96. * Generated from protobuf field <code>string contract_title = 2;</code>
  97. * @param string $var
  98. * @return $this
  99. */
  100. public function setContractTitle($var)
  101. {
  102. GPBUtil::checkString($var, True);
  103. $this->contract_title = $var;
  104. return $this;
  105. }
  106. /**
  107. * 合同详情
  108. *
  109. * Generated from protobuf field <code>.proto.api.OrderContractDetail contract_detail = 3;</code>
  110. * @return \Proto\Api\OrderContractDetail|null
  111. */
  112. public function getContractDetail()
  113. {
  114. return $this->contract_detail;
  115. }
  116. public function hasContractDetail()
  117. {
  118. return isset($this->contract_detail);
  119. }
  120. public function clearContractDetail()
  121. {
  122. unset($this->contract_detail);
  123. }
  124. /**
  125. * 合同详情
  126. *
  127. * Generated from protobuf field <code>.proto.api.OrderContractDetail contract_detail = 3;</code>
  128. * @param \Proto\Api\OrderContractDetail $var
  129. * @return $this
  130. */
  131. public function setContractDetail($var)
  132. {
  133. GPBUtil::checkMessage($var, \Proto\Api\OrderContractDetail::class);
  134. $this->contract_detail = $var;
  135. return $this;
  136. }
  137. }