123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/EntCityPackage.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.CityPackageEnt</code>
- */
- class CityPackageEnt extends \Google\Protobuf\Internal\Message
- {
- /**
- * 套餐信息
- *
- * Generated from protobuf field <code>.proto.api.EntPackage package_info = 1;</code>
- */
- protected $package_info = null;
- /**
- * 套餐分类 1租电套餐 2车电一体 3租车套餐
- *
- * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 2;</code>
- */
- protected $package_category = 0;
- /**
- * 支持的区县ID列表
- *
- * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 3;</code>
- */
- private $area_list;
- /**
- * 电池标签信息
- *
- * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 4;</code>
- */
- protected $battery_tag_info = null;
- /**
- * 车型信息
- *
- * Generated from protobuf field <code>.proto.api.EntTag car_tag_info = 5;</code>
- */
- protected $car_tag_info = null;
- /**
- * 门店信息
- *
- * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 6;</code>
- */
- protected $shop_info = null;
- /**
- * 是否是推荐
- *
- * Generated from protobuf field <code>.proto.api.YES_NO is_recommend = 7;</code>
- */
- protected $is_recommend = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Proto\Api\EntPackage $package_info
- * 套餐信息
- * @type int $package_category
- * 套餐分类 1租电套餐 2车电一体 3租车套餐
- * @type array<\Proto\Api\AreaEnt>|\Google\Protobuf\Internal\RepeatedField $area_list
- * 支持的区县ID列表
- * @type \Proto\Api\EntTag $battery_tag_info
- * 电池标签信息
- * @type \Proto\Api\EntTag $car_tag_info
- * 车型信息
- * @type \Proto\Api\EntAdmin $shop_info
- * 门店信息
- * @type int $is_recommend
- * 是否是推荐
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntCityPackage::initOnce();
- parent::__construct($data);
- }
- /**
- * 套餐信息
- *
- * Generated from protobuf field <code>.proto.api.EntPackage package_info = 1;</code>
- * @return \Proto\Api\EntPackage|null
- */
- public function getPackageInfo()
- {
- return $this->package_info;
- }
- public function hasPackageInfo()
- {
- return isset($this->package_info);
- }
- public function clearPackageInfo()
- {
- unset($this->package_info);
- }
- /**
- * 套餐信息
- *
- * Generated from protobuf field <code>.proto.api.EntPackage package_info = 1;</code>
- * @param \Proto\Api\EntPackage $var
- * @return $this
- */
- public function setPackageInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntPackage::class);
- $this->package_info = $var;
- return $this;
- }
- /**
- * 套餐分类 1租电套餐 2车电一体 3租车套餐
- *
- * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 2;</code>
- * @return int
- */
- public function getPackageCategory()
- {
- return $this->package_category;
- }
- /**
- * 套餐分类 1租电套餐 2车电一体 3租车套餐
- *
- * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 2;</code>
- * @param int $var
- * @return $this
- */
- public function setPackageCategory($var)
- {
- GPBUtil::checkEnum($var, \Proto\Api\DEVICE_USE_TYPE::class);
- $this->package_category = $var;
- return $this;
- }
- /**
- * 支持的区县ID列表
- *
- * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 3;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getAreaList()
- {
- return $this->area_list;
- }
- /**
- * 支持的区县ID列表
- *
- * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 3;</code>
- * @param array<\Proto\Api\AreaEnt>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setAreaList($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\AreaEnt::class);
- $this->area_list = $arr;
- return $this;
- }
- /**
- * 电池标签信息
- *
- * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 4;</code>
- * @return \Proto\Api\EntTag|null
- */
- public function getBatteryTagInfo()
- {
- return $this->battery_tag_info;
- }
- public function hasBatteryTagInfo()
- {
- return isset($this->battery_tag_info);
- }
- public function clearBatteryTagInfo()
- {
- unset($this->battery_tag_info);
- }
- /**
- * 电池标签信息
- *
- * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 4;</code>
- * @param \Proto\Api\EntTag $var
- * @return $this
- */
- public function setBatteryTagInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntTag::class);
- $this->battery_tag_info = $var;
- return $this;
- }
- /**
- * 车型信息
- *
- * Generated from protobuf field <code>.proto.api.EntTag car_tag_info = 5;</code>
- * @return \Proto\Api\EntTag|null
- */
- public function getCarTagInfo()
- {
- return $this->car_tag_info;
- }
- public function hasCarTagInfo()
- {
- return isset($this->car_tag_info);
- }
- public function clearCarTagInfo()
- {
- unset($this->car_tag_info);
- }
- /**
- * 车型信息
- *
- * Generated from protobuf field <code>.proto.api.EntTag car_tag_info = 5;</code>
- * @param \Proto\Api\EntTag $var
- * @return $this
- */
- public function setCarTagInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntTag::class);
- $this->car_tag_info = $var;
- return $this;
- }
- /**
- * 门店信息
- *
- * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 6;</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 = 6;</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;
- }
- /**
- * 是否是推荐
- *
- * Generated from protobuf field <code>.proto.api.YES_NO is_recommend = 7;</code>
- * @return int
- */
- public function getIsRecommend()
- {
- return $this->is_recommend;
- }
- /**
- * 是否是推荐
- *
- * Generated from protobuf field <code>.proto.api.YES_NO is_recommend = 7;</code>
- * @param int $var
- * @return $this
- */
- public function setIsRecommend($var)
- {
- GPBUtil::checkEnum($var, \Proto\Api\YES_NO::class);
- $this->is_recommend = $var;
- return $this;
- }
- }
|