OrderContractDetail.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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.OrderContractDetail</code>
  13. */
  14. class OrderContractDetail extends \Google\Protobuf\Internal\Message
  15. {
  16. /**
  17. * 合同内容
  18. *
  19. * Generated from protobuf field <code>string contract_content = 1;</code>
  20. */
  21. protected $contract_content = '';
  22. /**
  23. * Constructor.
  24. *
  25. * @param array $data {
  26. * Optional. Data for populating the Message object.
  27. *
  28. * @type string $contract_content
  29. * 合同内容
  30. * }
  31. */
  32. public function __construct($data = NULL) {
  33. \GPBMetadata\Api\EntOrderContract::initOnce();
  34. parent::__construct($data);
  35. }
  36. /**
  37. * 合同内容
  38. *
  39. * Generated from protobuf field <code>string contract_content = 1;</code>
  40. * @return string
  41. */
  42. public function getContractContent()
  43. {
  44. return $this->contract_content;
  45. }
  46. /**
  47. * 合同内容
  48. *
  49. * Generated from protobuf field <code>string contract_content = 1;</code>
  50. * @param string $var
  51. * @return $this
  52. */
  53. public function setContractContent($var)
  54. {
  55. GPBUtil::checkString($var, True);
  56. $this->contract_content = $var;
  57. return $this;
  58. }
  59. }