123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/CityPackage.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.CityPackageAddReq</code>
- */
- class CityPackageAddReq extends \Google\Protobuf\Internal\Message
- {
- /**
- * 门店ID 默认为当前登陆的门店ID
- *
- * Generated from protobuf field <code>int32 shop_id = 1;</code>
- */
- protected $shop_id = 0;
- /**
- * 套餐数组列表
- *
- * Generated from protobuf field <code>repeated .proto.api.CityPackageAddReq.AddItem package_list = 2;</code>
- */
- private $package_list;
- /**
- * 套餐分类 1租电套餐 2车电一体 3租车套餐
- *
- * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 3;</code>
- */
- protected $package_category = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int $shop_id
- * 门店ID 默认为当前登陆的门店ID
- * @type array<\Proto\Api\CityPackageAddReq\AddItem>|\Google\Protobuf\Internal\RepeatedField $package_list
- * 套餐数组列表
- * @type int $package_category
- * 套餐分类 1租电套餐 2车电一体 3租车套餐
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\CityPackage::initOnce();
- parent::__construct($data);
- }
- /**
- * 门店ID 默认为当前登陆的门店ID
- *
- * Generated from protobuf field <code>int32 shop_id = 1;</code>
- * @return int
- */
- public function getShopId()
- {
- return $this->shop_id;
- }
- /**
- * 门店ID 默认为当前登陆的门店ID
- *
- * Generated from protobuf field <code>int32 shop_id = 1;</code>
- * @param int $var
- * @return $this
- */
- public function setShopId($var)
- {
- GPBUtil::checkInt32($var);
- $this->shop_id = $var;
- return $this;
- }
- /**
- * 套餐数组列表
- *
- * Generated from protobuf field <code>repeated .proto.api.CityPackageAddReq.AddItem package_list = 2;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getPackageList()
- {
- return $this->package_list;
- }
- /**
- * 套餐数组列表
- *
- * Generated from protobuf field <code>repeated .proto.api.CityPackageAddReq.AddItem package_list = 2;</code>
- * @param array<\Proto\Api\CityPackageAddReq\AddItem>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setPackageList($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\CityPackageAddReq\AddItem::class);
- $this->package_list = $arr;
- return $this;
- }
- /**
- * 套餐分类 1租电套餐 2车电一体 3租车套餐
- *
- * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 3;</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 = 3;</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;
- }
- }
|