123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?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.SubShopListRes</code>
- */
- class SubShopListRes extends \Google\Protobuf\Internal\Message
- {
- /**
- * 总条数
- *
- * Generated from protobuf field <code>int32 total = 1;</code>
- */
- protected $total = 0;
- /**
- * 门店列表
- *
- * Generated from protobuf field <code>repeated .proto.api.SubShopListRes.SubShopListResItem list = 2;</code>
- */
- private $list;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int $total
- * 总条数
- * @type array<\Proto\Api\SubShopListRes\SubShopListResItem>|\Google\Protobuf\Internal\RepeatedField $list
- * 门店列表
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\CityPackage::initOnce();
- parent::__construct($data);
- }
- /**
- * 总条数
- *
- * Generated from protobuf field <code>int32 total = 1;</code>
- * @return int
- */
- public function getTotal()
- {
- return $this->total;
- }
- /**
- * 总条数
- *
- * Generated from protobuf field <code>int32 total = 1;</code>
- * @param int $var
- * @return $this
- */
- public function setTotal($var)
- {
- GPBUtil::checkInt32($var);
- $this->total = $var;
- return $this;
- }
- /**
- * 门店列表
- *
- * Generated from protobuf field <code>repeated .proto.api.SubShopListRes.SubShopListResItem list = 2;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getList()
- {
- return $this->list;
- }
- /**
- * 门店列表
- *
- * Generated from protobuf field <code>repeated .proto.api.SubShopListRes.SubShopListResItem list = 2;</code>
- * @param array<\Proto\Api\SubShopListRes\SubShopListResItem>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setList($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\SubShopListRes\SubShopListResItem::class);
- $this->list = $arr;
- return $this;
- }
- }
|