CityPackageEnt.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntCityPackage.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. * 城市套餐的信息
  11. *
  12. * Generated from protobuf message <code>proto.api.CityPackageEnt</code>
  13. */
  14. class CityPackageEnt extends \Google\Protobuf\Internal\Message
  15. {
  16. /**
  17. * 套餐信息
  18. *
  19. * Generated from protobuf field <code>.proto.api.EntPackage package_info = 1;</code>
  20. */
  21. protected $package_info = null;
  22. /**
  23. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  24. *
  25. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 2;</code>
  26. */
  27. protected $package_category = 0;
  28. /**
  29. * 支持的区县ID列表
  30. *
  31. * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 3;</code>
  32. */
  33. private $area_list;
  34. /**
  35. * 电池标签信息
  36. *
  37. * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 4;</code>
  38. */
  39. protected $battery_tag_info = null;
  40. /**
  41. * 车型信息
  42. *
  43. * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 5;</code>
  44. */
  45. protected $car_model_info = null;
  46. /**
  47. * 门店信息
  48. *
  49. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 6;</code>
  50. */
  51. protected $shop_info = null;
  52. /**
  53. * Constructor.
  54. *
  55. * @param array $data {
  56. * Optional. Data for populating the Message object.
  57. *
  58. * @type \Proto\Api\EntPackage $package_info
  59. * 套餐信息
  60. * @type int $package_category
  61. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  62. * @type array<\Proto\Api\AreaEnt>|\Google\Protobuf\Internal\RepeatedField $area_list
  63. * 支持的区县ID列表
  64. * @type \Proto\Api\EntTag $battery_tag_info
  65. * 电池标签信息
  66. * @type \Proto\Api\CarModelEnt $car_model_info
  67. * 车型信息
  68. * @type \Proto\Api\EntAdmin $shop_info
  69. * 门店信息
  70. * }
  71. */
  72. public function __construct($data = NULL) {
  73. \GPBMetadata\Api\EntCityPackage::initOnce();
  74. parent::__construct($data);
  75. }
  76. /**
  77. * 套餐信息
  78. *
  79. * Generated from protobuf field <code>.proto.api.EntPackage package_info = 1;</code>
  80. * @return \Proto\Api\EntPackage|null
  81. */
  82. public function getPackageInfo()
  83. {
  84. return $this->package_info;
  85. }
  86. public function hasPackageInfo()
  87. {
  88. return isset($this->package_info);
  89. }
  90. public function clearPackageInfo()
  91. {
  92. unset($this->package_info);
  93. }
  94. /**
  95. * 套餐信息
  96. *
  97. * Generated from protobuf field <code>.proto.api.EntPackage package_info = 1;</code>
  98. * @param \Proto\Api\EntPackage $var
  99. * @return $this
  100. */
  101. public function setPackageInfo($var)
  102. {
  103. GPBUtil::checkMessage($var, \Proto\Api\EntPackage::class);
  104. $this->package_info = $var;
  105. return $this;
  106. }
  107. /**
  108. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  109. *
  110. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 2;</code>
  111. * @return int
  112. */
  113. public function getPackageCategory()
  114. {
  115. return $this->package_category;
  116. }
  117. /**
  118. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  119. *
  120. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 2;</code>
  121. * @param int $var
  122. * @return $this
  123. */
  124. public function setPackageCategory($var)
  125. {
  126. GPBUtil::checkEnum($var, \Proto\Api\DEVICE_USE_TYPE::class);
  127. $this->package_category = $var;
  128. return $this;
  129. }
  130. /**
  131. * 支持的区县ID列表
  132. *
  133. * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 3;</code>
  134. * @return \Google\Protobuf\Internal\RepeatedField
  135. */
  136. public function getAreaList()
  137. {
  138. return $this->area_list;
  139. }
  140. /**
  141. * 支持的区县ID列表
  142. *
  143. * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 3;</code>
  144. * @param array<\Proto\Api\AreaEnt>|\Google\Protobuf\Internal\RepeatedField $var
  145. * @return $this
  146. */
  147. public function setAreaList($var)
  148. {
  149. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\AreaEnt::class);
  150. $this->area_list = $arr;
  151. return $this;
  152. }
  153. /**
  154. * 电池标签信息
  155. *
  156. * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 4;</code>
  157. * @return \Proto\Api\EntTag|null
  158. */
  159. public function getBatteryTagInfo()
  160. {
  161. return $this->battery_tag_info;
  162. }
  163. public function hasBatteryTagInfo()
  164. {
  165. return isset($this->battery_tag_info);
  166. }
  167. public function clearBatteryTagInfo()
  168. {
  169. unset($this->battery_tag_info);
  170. }
  171. /**
  172. * 电池标签信息
  173. *
  174. * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 4;</code>
  175. * @param \Proto\Api\EntTag $var
  176. * @return $this
  177. */
  178. public function setBatteryTagInfo($var)
  179. {
  180. GPBUtil::checkMessage($var, \Proto\Api\EntTag::class);
  181. $this->battery_tag_info = $var;
  182. return $this;
  183. }
  184. /**
  185. * 车型信息
  186. *
  187. * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 5;</code>
  188. * @return \Proto\Api\CarModelEnt|null
  189. */
  190. public function getCarModelInfo()
  191. {
  192. return $this->car_model_info;
  193. }
  194. public function hasCarModelInfo()
  195. {
  196. return isset($this->car_model_info);
  197. }
  198. public function clearCarModelInfo()
  199. {
  200. unset($this->car_model_info);
  201. }
  202. /**
  203. * 车型信息
  204. *
  205. * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 5;</code>
  206. * @param \Proto\Api\CarModelEnt $var
  207. * @return $this
  208. */
  209. public function setCarModelInfo($var)
  210. {
  211. GPBUtil::checkMessage($var, \Proto\Api\CarModelEnt::class);
  212. $this->car_model_info = $var;
  213. return $this;
  214. }
  215. /**
  216. * 门店信息
  217. *
  218. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 6;</code>
  219. * @return \Proto\Api\EntAdmin|null
  220. */
  221. public function getShopInfo()
  222. {
  223. return $this->shop_info;
  224. }
  225. public function hasShopInfo()
  226. {
  227. return isset($this->shop_info);
  228. }
  229. public function clearShopInfo()
  230. {
  231. unset($this->shop_info);
  232. }
  233. /**
  234. * 门店信息
  235. *
  236. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 6;</code>
  237. * @param \Proto\Api\EntAdmin $var
  238. * @return $this
  239. */
  240. public function setShopInfo($var)
  241. {
  242. GPBUtil::checkMessage($var, \Proto\Api\EntAdmin::class);
  243. $this->shop_info = $var;
  244. return $this;
  245. }
  246. }