123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/Common.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.ShopArg</code>
- */
- class ShopArg extends \Google\Protobuf\Internal\Message
- {
- /**
- * 门店ID
- *
- * Generated from protobuf field <code>int32 shop_id = 1;</code>
- */
- protected $shop_id = 0;
- /**
- * 是否包含所有子级层级的子门店
- *
- * Generated from protobuf field <code>bool is_all_level = 2;</code>
- */
- protected $is_all_level = false;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int $shop_id
- * 门店ID
- * @type bool $is_all_level
- * 是否包含所有子级层级的子门店
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\Common::initOnce();
- parent::__construct($data);
- }
- /**
- * 门店ID
- *
- * Generated from protobuf field <code>int32 shop_id = 1;</code>
- * @return int
- */
- public function getShopId()
- {
- return $this->shop_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>bool is_all_level = 2;</code>
- * @return bool
- */
- public function getIsAllLevel()
- {
- return $this->is_all_level;
- }
- /**
- * 是否包含所有子级层级的子门店
- *
- * Generated from protobuf field <code>bool is_all_level = 2;</code>
- * @param bool $var
- * @return $this
- */
- public function setIsAllLevel($var)
- {
- GPBUtil::checkBool($var);
- $this->is_all_level = $var;
- return $this;
- }
- }
|