123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/EntCarModel.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.CityPackageCarModelEnt</code>
- */
- class CityPackageCarModelEnt extends \Google\Protobuf\Internal\Message
- {
- /**
- * 车型信息
- *
- * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 1;</code>
- */
- protected $car_model_info = null;
- /**
- * 所属门店信息
- *
- * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 2;</code>
- */
- protected $shop_info = null;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Proto\Api\CarModelEnt $car_model_info
- * 车型信息
- * @type \Proto\Api\EntAdmin $shop_info
- * 所属门店信息
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntCarModel::initOnce();
- parent::__construct($data);
- }
- /**
- * 车型信息
- *
- * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 1;</code>
- * @return \Proto\Api\CarModelEnt|null
- */
- public function getCarModelInfo()
- {
- return $this->car_model_info;
- }
- public function hasCarModelInfo()
- {
- return isset($this->car_model_info);
- }
- public function clearCarModelInfo()
- {
- unset($this->car_model_info);
- }
- /**
- * 车型信息
- *
- * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 1;</code>
- * @param \Proto\Api\CarModelEnt $var
- * @return $this
- */
- public function setCarModelInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\CarModelEnt::class);
- $this->car_model_info = $var;
- return $this;
- }
- /**
- * 所属门店信息
- *
- * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 2;</code>
- * @return \Proto\Api\EntAdmin|null
- */
- public function getShopInfo()
- {
- return $this->shop_info;
- }
- public function hasShopInfo()
- {
- return isset($this->shop_info);
- }
- public function clearShopInfo()
- {
- unset($this->shop_info);
- }
- /**
- * 所属门店信息
- *
- * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 2;</code>
- * @param \Proto\Api\EntAdmin $var
- * @return $this
- */
- public function setShopInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntAdmin::class);
- $this->shop_info = $var;
- return $this;
- }
- }
|