CityPackageEnt.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  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.EntTag car_tag_info = 5;</code>
  44. */
  45. protected $car_tag_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. * 是否是推荐
  54. *
  55. * Generated from protobuf field <code>.proto.api.YES_NO is_recommend = 7;</code>
  56. */
  57. protected $is_recommend = 0;
  58. /**
  59. * Constructor.
  60. *
  61. * @param array $data {
  62. * Optional. Data for populating the Message object.
  63. *
  64. * @type \Proto\Api\EntPackage $package_info
  65. * 套餐信息
  66. * @type int $package_category
  67. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  68. * @type array<\Proto\Api\AreaEnt>|\Google\Protobuf\Internal\RepeatedField $area_list
  69. * 支持的区县ID列表
  70. * @type \Proto\Api\EntTag $battery_tag_info
  71. * 电池标签信息
  72. * @type \Proto\Api\EntTag $car_tag_info
  73. * 车型信息
  74. * @type \Proto\Api\EntAdmin $shop_info
  75. * 门店信息
  76. * @type int $is_recommend
  77. * 是否是推荐
  78. * }
  79. */
  80. public function __construct($data = NULL) {
  81. \GPBMetadata\Api\EntCityPackage::initOnce();
  82. parent::__construct($data);
  83. }
  84. /**
  85. * 套餐信息
  86. *
  87. * Generated from protobuf field <code>.proto.api.EntPackage package_info = 1;</code>
  88. * @return \Proto\Api\EntPackage|null
  89. */
  90. public function getPackageInfo()
  91. {
  92. return $this->package_info;
  93. }
  94. public function hasPackageInfo()
  95. {
  96. return isset($this->package_info);
  97. }
  98. public function clearPackageInfo()
  99. {
  100. unset($this->package_info);
  101. }
  102. /**
  103. * 套餐信息
  104. *
  105. * Generated from protobuf field <code>.proto.api.EntPackage package_info = 1;</code>
  106. * @param \Proto\Api\EntPackage $var
  107. * @return $this
  108. */
  109. public function setPackageInfo($var)
  110. {
  111. GPBUtil::checkMessage($var, \Proto\Api\EntPackage::class);
  112. $this->package_info = $var;
  113. return $this;
  114. }
  115. /**
  116. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  117. *
  118. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 2;</code>
  119. * @return int
  120. */
  121. public function getPackageCategory()
  122. {
  123. return $this->package_category;
  124. }
  125. /**
  126. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  127. *
  128. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 2;</code>
  129. * @param int $var
  130. * @return $this
  131. */
  132. public function setPackageCategory($var)
  133. {
  134. GPBUtil::checkEnum($var, \Proto\Api\DEVICE_USE_TYPE::class);
  135. $this->package_category = $var;
  136. return $this;
  137. }
  138. /**
  139. * 支持的区县ID列表
  140. *
  141. * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 3;</code>
  142. * @return \Google\Protobuf\Internal\RepeatedField
  143. */
  144. public function getAreaList()
  145. {
  146. return $this->area_list;
  147. }
  148. /**
  149. * 支持的区县ID列表
  150. *
  151. * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 3;</code>
  152. * @param array<\Proto\Api\AreaEnt>|\Google\Protobuf\Internal\RepeatedField $var
  153. * @return $this
  154. */
  155. public function setAreaList($var)
  156. {
  157. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\AreaEnt::class);
  158. $this->area_list = $arr;
  159. return $this;
  160. }
  161. /**
  162. * 电池标签信息
  163. *
  164. * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 4;</code>
  165. * @return \Proto\Api\EntTag|null
  166. */
  167. public function getBatteryTagInfo()
  168. {
  169. return $this->battery_tag_info;
  170. }
  171. public function hasBatteryTagInfo()
  172. {
  173. return isset($this->battery_tag_info);
  174. }
  175. public function clearBatteryTagInfo()
  176. {
  177. unset($this->battery_tag_info);
  178. }
  179. /**
  180. * 电池标签信息
  181. *
  182. * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 4;</code>
  183. * @param \Proto\Api\EntTag $var
  184. * @return $this
  185. */
  186. public function setBatteryTagInfo($var)
  187. {
  188. GPBUtil::checkMessage($var, \Proto\Api\EntTag::class);
  189. $this->battery_tag_info = $var;
  190. return $this;
  191. }
  192. /**
  193. * 车型信息
  194. *
  195. * Generated from protobuf field <code>.proto.api.EntTag car_tag_info = 5;</code>
  196. * @return \Proto\Api\EntTag|null
  197. */
  198. public function getCarTagInfo()
  199. {
  200. return $this->car_tag_info;
  201. }
  202. public function hasCarTagInfo()
  203. {
  204. return isset($this->car_tag_info);
  205. }
  206. public function clearCarTagInfo()
  207. {
  208. unset($this->car_tag_info);
  209. }
  210. /**
  211. * 车型信息
  212. *
  213. * Generated from protobuf field <code>.proto.api.EntTag car_tag_info = 5;</code>
  214. * @param \Proto\Api\EntTag $var
  215. * @return $this
  216. */
  217. public function setCarTagInfo($var)
  218. {
  219. GPBUtil::checkMessage($var, \Proto\Api\EntTag::class);
  220. $this->car_tag_info = $var;
  221. return $this;
  222. }
  223. /**
  224. * 门店信息
  225. *
  226. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 6;</code>
  227. * @return \Proto\Api\EntAdmin|null
  228. */
  229. public function getShopInfo()
  230. {
  231. return $this->shop_info;
  232. }
  233. public function hasShopInfo()
  234. {
  235. return isset($this->shop_info);
  236. }
  237. public function clearShopInfo()
  238. {
  239. unset($this->shop_info);
  240. }
  241. /**
  242. * 门店信息
  243. *
  244. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 6;</code>
  245. * @param \Proto\Api\EntAdmin $var
  246. * @return $this
  247. */
  248. public function setShopInfo($var)
  249. {
  250. GPBUtil::checkMessage($var, \Proto\Api\EntAdmin::class);
  251. $this->shop_info = $var;
  252. return $this;
  253. }
  254. /**
  255. * 是否是推荐
  256. *
  257. * Generated from protobuf field <code>.proto.api.YES_NO is_recommend = 7;</code>
  258. * @return int
  259. */
  260. public function getIsRecommend()
  261. {
  262. return $this->is_recommend;
  263. }
  264. /**
  265. * 是否是推荐
  266. *
  267. * Generated from protobuf field <code>.proto.api.YES_NO is_recommend = 7;</code>
  268. * @param int $var
  269. * @return $this
  270. */
  271. public function setIsRecommend($var)
  272. {
  273. GPBUtil::checkEnum($var, \Proto\Api\YES_NO::class);
  274. $this->is_recommend = $var;
  275. return $this;
  276. }
  277. }