1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/EntOrderContract.proto
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * 订单合同的详情
- *
- * Generated from protobuf message <code>proto.api.OrderContractDetail</code>
- */
- class OrderContractDetail extends \Google\Protobuf\Internal\Message
- {
- /**
- * 合同内容
- *
- * Generated from protobuf field <code>string contract_content = 1;</code>
- */
- protected $contract_content = '';
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $contract_content
- * 合同内容
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntOrderContract::initOnce();
- parent::__construct($data);
- }
- /**
- * 合同内容
- *
- * Generated from protobuf field <code>string contract_content = 1;</code>
- * @return string
- */
- public function getContractContent()
- {
- return $this->contract_content;
- }
- /**
- * 合同内容
- *
- * Generated from protobuf field <code>string contract_content = 1;</code>
- * @param string $var
- * @return $this
- */
- public function setContractContent($var)
- {
- GPBUtil::checkString($var, True);
- $this->contract_content = $var;
- return $this;
- }
- }
|