SubRemoveAreaReq.php 2.3 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.SubRemoveAreaReq</code>
  11. */
  12. class SubRemoveAreaReq extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 门店ID
  16. *
  17. * Generated from protobuf field <code>int32 shop_id = 1;</code>
  18. */
  19. protected $shop_id = 0;
  20. /**
  21. * 地区area_ids
  22. *
  23. * Generated from protobuf field <code>repeated string area_ids = 2;</code>
  24. */
  25. private $area_ids;
  26. /**
  27. * Constructor.
  28. *
  29. * @param array $data {
  30. * Optional. Data for populating the Message object.
  31. *
  32. * @type int $shop_id
  33. * 门店ID
  34. * @type array<string>|\Google\Protobuf\Internal\RepeatedField $area_ids
  35. * 地区area_ids
  36. * }
  37. */
  38. public function __construct($data = NULL) {
  39. \GPBMetadata\Api\CityPackage::initOnce();
  40. parent::__construct($data);
  41. }
  42. /**
  43. * 门店ID
  44. *
  45. * Generated from protobuf field <code>int32 shop_id = 1;</code>
  46. * @return int
  47. */
  48. public function getShopId()
  49. {
  50. return $this->shop_id;
  51. }
  52. /**
  53. * 门店ID
  54. *
  55. * Generated from protobuf field <code>int32 shop_id = 1;</code>
  56. * @param int $var
  57. * @return $this
  58. */
  59. public function setShopId($var)
  60. {
  61. GPBUtil::checkInt32($var);
  62. $this->shop_id = $var;
  63. return $this;
  64. }
  65. /**
  66. * 地区area_ids
  67. *
  68. * Generated from protobuf field <code>repeated string area_ids = 2;</code>
  69. * @return \Google\Protobuf\Internal\RepeatedField
  70. */
  71. public function getAreaIds()
  72. {
  73. return $this->area_ids;
  74. }
  75. /**
  76. * 地区area_ids
  77. *
  78. * Generated from protobuf field <code>repeated string area_ids = 2;</code>
  79. * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
  80. * @return $this
  81. */
  82. public function setAreaIds($var)
  83. {
  84. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
  85. $this->area_ids = $arr;
  86. return $this;
  87. }
  88. }