SubShopListRes.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/CityPackage.proto
  5. namespace Proto\Api;
  6. use Google\Protobuf\Internal\GPBType;
  7. use Google\Protobuf\Internal\RepeatedField;
  8. use Google\Protobuf\Internal\GPBUtil;
  9. /**
  10. * Generated from protobuf message <code>proto.api.SubShopListRes</code>
  11. */
  12. class SubShopListRes extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 总条数
  16. *
  17. * Generated from protobuf field <code>int32 total = 1;</code>
  18. */
  19. protected $total = 0;
  20. /**
  21. * 门店列表
  22. *
  23. * Generated from protobuf field <code>repeated .proto.api.SubShopListRes.SubShopListResItem list = 2;</code>
  24. */
  25. private $list;
  26. /**
  27. * Constructor.
  28. *
  29. * @param array $data {
  30. * Optional. Data for populating the Message object.
  31. *
  32. * @type int $total
  33. * 总条数
  34. * @type array<\Proto\Api\SubShopListRes\SubShopListResItem>|\Google\Protobuf\Internal\RepeatedField $list
  35. * 门店列表
  36. * }
  37. */
  38. public function __construct($data = NULL) {
  39. \GPBMetadata\Api\CityPackage::initOnce();
  40. parent::__construct($data);
  41. }
  42. /**
  43. * 总条数
  44. *
  45. * Generated from protobuf field <code>int32 total = 1;</code>
  46. * @return int
  47. */
  48. public function getTotal()
  49. {
  50. return $this->total;
  51. }
  52. /**
  53. * 总条数
  54. *
  55. * Generated from protobuf field <code>int32 total = 1;</code>
  56. * @param int $var
  57. * @return $this
  58. */
  59. public function setTotal($var)
  60. {
  61. GPBUtil::checkInt32($var);
  62. $this->total = $var;
  63. return $this;
  64. }
  65. /**
  66. * 门店列表
  67. *
  68. * Generated from protobuf field <code>repeated .proto.api.SubShopListRes.SubShopListResItem list = 2;</code>
  69. * @return \Google\Protobuf\Internal\RepeatedField
  70. */
  71. public function getList()
  72. {
  73. return $this->list;
  74. }
  75. /**
  76. * 门店列表
  77. *
  78. * Generated from protobuf field <code>repeated .proto.api.SubShopListRes.SubShopListResItem list = 2;</code>
  79. * @param array<\Proto\Api\SubShopListRes\SubShopListResItem>|\Google\Protobuf\Internal\RepeatedField $var
  80. * @return $this
  81. */
  82. public function setList($var)
  83. {
  84. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\SubShopListRes\SubShopListResItem::class);
  85. $this->list = $arr;
  86. return $this;
  87. }
  88. }