ContractDetail.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntContract.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. * Generated from protobuf message <code>proto.api.ContractDetail</code>
  11. */
  12. class ContractDetail extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 合同内容
  16. *
  17. * Generated from protobuf field <code>string contract_content = 1;</code>
  18. */
  19. protected $contract_content = '';
  20. /**
  21. * Constructor.
  22. *
  23. * @param array $data {
  24. * Optional. Data for populating the Message object.
  25. *
  26. * @type string $contract_content
  27. * 合同内容
  28. * }
  29. */
  30. public function __construct($data = NULL) {
  31. \GPBMetadata\Api\EntContract::initOnce();
  32. parent::__construct($data);
  33. }
  34. /**
  35. * 合同内容
  36. *
  37. * Generated from protobuf field <code>string contract_content = 1;</code>
  38. * @return string
  39. */
  40. public function getContractContent()
  41. {
  42. return $this->contract_content;
  43. }
  44. /**
  45. * 合同内容
  46. *
  47. * Generated from protobuf field <code>string contract_content = 1;</code>
  48. * @param string $var
  49. * @return $this
  50. */
  51. public function setContractContent($var)
  52. {
  53. GPBUtil::checkString($var, True);
  54. $this->contract_content = $var;
  55. return $this;
  56. }
  57. }