proto.api.CityPackageAddReq */ class CityPackageAddReq extends \Google\Protobuf\Internal\Message { /** * 门店ID 默认为当前登陆的门店ID * * Generated from protobuf field int32 shop_id = 1; */ protected $shop_id = 0; /** * 套餐数组列表 * * Generated from protobuf field repeated .proto.api.CityPackageAddReq.AddItem package_list = 2; */ private $package_list; /** * 套餐分类 1租电套餐 2车电一体 3租车套餐 * * Generated from protobuf field .proto.api.DEVICE_USE_TYPE package_category = 3; */ 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 int32 shop_id = 1; * @return int */ public function getShopId() { return $this->shop_id; } /** * 门店ID 默认为当前登陆的门店ID * * Generated from protobuf field int32 shop_id = 1; * @param int $var * @return $this */ public function setShopId($var) { GPBUtil::checkInt32($var); $this->shop_id = $var; return $this; } /** * 套餐数组列表 * * Generated from protobuf field repeated .proto.api.CityPackageAddReq.AddItem package_list = 2; * @return \Google\Protobuf\Internal\RepeatedField */ public function getPackageList() { return $this->package_list; } /** * 套餐数组列表 * * Generated from protobuf field repeated .proto.api.CityPackageAddReq.AddItem package_list = 2; * @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 .proto.api.DEVICE_USE_TYPE package_category = 3; * @return int */ public function getPackageCategory() { return $this->package_category; } /** * 套餐分类 1租电套餐 2车电一体 3租车套餐 * * Generated from protobuf field .proto.api.DEVICE_USE_TYPE package_category = 3; * @param int $var * @return $this */ public function setPackageCategory($var) { GPBUtil::checkEnum($var, \Proto\Api\DEVICE_USE_TYPE::class); $this->package_category = $var; return $this; } }