12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/OrderContract.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.OrderContractDetailRes</code>
- */
- class OrderContractDetailRes extends \Google\Protobuf\Internal\Message
- {
- /**
- * 合同信息
- *
- * Generated from protobuf field <code>.proto.api.EntOrderContract contract_info = 1;</code>
- */
- protected $contract_info = null;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Proto\Api\EntOrderContract $contract_info
- * 合同信息
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\OrderContract::initOnce();
- parent::__construct($data);
- }
- /**
- * 合同信息
- *
- * Generated from protobuf field <code>.proto.api.EntOrderContract contract_info = 1;</code>
- * @return \Proto\Api\EntOrderContract|null
- */
- public function getContractInfo()
- {
- return $this->contract_info;
- }
- public function hasContractInfo()
- {
- return isset($this->contract_info);
- }
- public function clearContractInfo()
- {
- unset($this->contract_info);
- }
- /**
- * 合同信息
- *
- * Generated from protobuf field <code>.proto.api.EntOrderContract contract_info = 1;</code>
- * @param \Proto\Api\EntOrderContract $var
- * @return $this
- */
- public function setContractInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntOrderContract::class);
- $this->contract_info = $var;
- return $this;
- }
- }
|