ListPackageReq.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  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.ListPackageReq</code>
  11. */
  12. class ListPackageReq extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 分页参数
  16. *
  17. * Generated from protobuf field <code>.proto.api.PageArg page_arg = 1;</code>
  18. */
  19. protected $page_arg = null;
  20. /**
  21. * 门店筛选参数
  22. *
  23. * Generated from protobuf field <code>.proto.api.ShopArg shop_arg = 2;</code>
  24. */
  25. protected $shop_arg = null;
  26. /**
  27. * 套餐分类
  28. *
  29. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 3;</code>
  30. */
  31. protected $package_category = 0;
  32. /**
  33. * 上下架状态
  34. *
  35. * Generated from protobuf field <code>.proto.api.LISTED_STATUS listed_status = 4;</code>
  36. */
  37. protected $listed_status = 0;
  38. /**
  39. * Constructor.
  40. *
  41. * @param array $data {
  42. * Optional. Data for populating the Message object.
  43. *
  44. * @type \Proto\Api\PageArg $page_arg
  45. * 分页参数
  46. * @type \Proto\Api\ShopArg $shop_arg
  47. * 门店筛选参数
  48. * @type int $package_category
  49. * 套餐分类
  50. * @type int $listed_status
  51. * 上下架状态
  52. * }
  53. */
  54. public function __construct($data = NULL) {
  55. \GPBMetadata\Api\CityPackage::initOnce();
  56. parent::__construct($data);
  57. }
  58. /**
  59. * 分页参数
  60. *
  61. * Generated from protobuf field <code>.proto.api.PageArg page_arg = 1;</code>
  62. * @return \Proto\Api\PageArg|null
  63. */
  64. public function getPageArg()
  65. {
  66. return $this->page_arg;
  67. }
  68. public function hasPageArg()
  69. {
  70. return isset($this->page_arg);
  71. }
  72. public function clearPageArg()
  73. {
  74. unset($this->page_arg);
  75. }
  76. /**
  77. * 分页参数
  78. *
  79. * Generated from protobuf field <code>.proto.api.PageArg page_arg = 1;</code>
  80. * @param \Proto\Api\PageArg $var
  81. * @return $this
  82. */
  83. public function setPageArg($var)
  84. {
  85. GPBUtil::checkMessage($var, \Proto\Api\PageArg::class);
  86. $this->page_arg = $var;
  87. return $this;
  88. }
  89. /**
  90. * 门店筛选参数
  91. *
  92. * Generated from protobuf field <code>.proto.api.ShopArg shop_arg = 2;</code>
  93. * @return \Proto\Api\ShopArg|null
  94. */
  95. public function getShopArg()
  96. {
  97. return $this->shop_arg;
  98. }
  99. public function hasShopArg()
  100. {
  101. return isset($this->shop_arg);
  102. }
  103. public function clearShopArg()
  104. {
  105. unset($this->shop_arg);
  106. }
  107. /**
  108. * 门店筛选参数
  109. *
  110. * Generated from protobuf field <code>.proto.api.ShopArg shop_arg = 2;</code>
  111. * @param \Proto\Api\ShopArg $var
  112. * @return $this
  113. */
  114. public function setShopArg($var)
  115. {
  116. GPBUtil::checkMessage($var, \Proto\Api\ShopArg::class);
  117. $this->shop_arg = $var;
  118. return $this;
  119. }
  120. /**
  121. * 套餐分类
  122. *
  123. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 3;</code>
  124. * @return int
  125. */
  126. public function getPackageCategory()
  127. {
  128. return $this->package_category;
  129. }
  130. /**
  131. * 套餐分类
  132. *
  133. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 3;</code>
  134. * @param int $var
  135. * @return $this
  136. */
  137. public function setPackageCategory($var)
  138. {
  139. GPBUtil::checkEnum($var, \Proto\Api\DEVICE_USE_TYPE::class);
  140. $this->package_category = $var;
  141. return $this;
  142. }
  143. /**
  144. * 上下架状态
  145. *
  146. * Generated from protobuf field <code>.proto.api.LISTED_STATUS listed_status = 4;</code>
  147. * @return int
  148. */
  149. public function getListedStatus()
  150. {
  151. return $this->listed_status;
  152. }
  153. /**
  154. * 上下架状态
  155. *
  156. * Generated from protobuf field <code>.proto.api.LISTED_STATUS listed_status = 4;</code>
  157. * @param int $var
  158. * @return $this
  159. */
  160. public function setListedStatus($var)
  161. {
  162. GPBUtil::checkEnum($var, \Proto\Api\LISTED_STATUS::class);
  163. $this->listed_status = $var;
  164. return $this;
  165. }
  166. }