AddItem.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562
  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\CityPackageAddReq;
  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.CityPackageAddReq.AddItem</code>
  11. */
  12. class AddItem extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 套餐名称
  16. *
  17. * Generated from protobuf field <code>string name = 1;</code>
  18. */
  19. protected $name = '';
  20. /**
  21. * 套餐类型
  22. *
  23. * Generated from protobuf field <code>.proto.api.PackageType type = 2;</code>
  24. */
  25. protected $type = 0;
  26. /**
  27. * 押金
  28. *
  29. * Generated from protobuf field <code>int32 pledge = 3;</code>
  30. */
  31. protected $pledge = 0;
  32. /**
  33. * 天数
  34. *
  35. * Generated from protobuf field <code>int32 total_day = 4;</code>
  36. */
  37. protected $total_day = 0;
  38. /**
  39. * 次数
  40. *
  41. * Generated from protobuf field <code>int32 total_num = 5;</code>
  42. */
  43. protected $total_num = 0;
  44. /**
  45. * 套餐显示价格
  46. *
  47. * Generated from protobuf field <code>int32 show_money = 6;</code>
  48. */
  49. protected $show_money = 0;
  50. /**
  51. * 套餐实际价格,元
  52. *
  53. * Generated from protobuf field <code>int32 money = 7;</code>
  54. */
  55. protected $money = 0;
  56. /**
  57. * 单次换电价格,元
  58. *
  59. * Generated from protobuf field <code>int32 exchange_money = 8;</code>
  60. */
  61. protected $exchange_money = 0;
  62. /**
  63. * 购买限制数量
  64. *
  65. * Generated from protobuf field <code>int32 buy_limit = 9;</code>
  66. */
  67. protected $buy_limit = 0;
  68. /**
  69. * 上下架状态
  70. *
  71. * Generated from protobuf field <code>.proto.api.LISTED_STATUS listed_status = 10;</code>
  72. */
  73. protected $listed_status = 0;
  74. /**
  75. * 库存
  76. *
  77. * Generated from protobuf field <code>int32 stock = 12;</code>
  78. */
  79. protected $stock = 0;
  80. /**
  81. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  82. *
  83. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 13;</code>
  84. */
  85. protected $package_category = 0;
  86. /**
  87. * 支持的区县ID列表
  88. *
  89. * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 14;</code>
  90. */
  91. private $area_list;
  92. /**
  93. * 电池标签信息
  94. *
  95. * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 15;</code>
  96. */
  97. protected $battery_tag_info = null;
  98. /**
  99. * 车型信息
  100. *
  101. * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 16;</code>
  102. */
  103. protected $car_model_info = null;
  104. /**
  105. * Constructor.
  106. *
  107. * @param array $data {
  108. * Optional. Data for populating the Message object.
  109. *
  110. * @type string $name
  111. * 套餐名称
  112. * @type int $type
  113. * 套餐类型
  114. * @type int $pledge
  115. * 押金
  116. * @type int $total_day
  117. * 天数
  118. * @type int $total_num
  119. * 次数
  120. * @type int $show_money
  121. * 套餐显示价格
  122. * @type int $money
  123. * 套餐实际价格,元
  124. * @type int $exchange_money
  125. * 单次换电价格,元
  126. * @type int $buy_limit
  127. * 购买限制数量
  128. * @type int $listed_status
  129. * 上下架状态
  130. * @type int $stock
  131. * 库存
  132. * @type int $package_category
  133. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  134. * @type array<\Proto\Api\AreaEnt>|\Google\Protobuf\Internal\RepeatedField $area_list
  135. * 支持的区县ID列表
  136. * @type \Proto\Api\EntTag $battery_tag_info
  137. * 电池标签信息
  138. * @type \Proto\Api\CarModelEnt $car_model_info
  139. * 车型信息
  140. * }
  141. */
  142. public function __construct($data = NULL) {
  143. \GPBMetadata\Api\CityPackage::initOnce();
  144. parent::__construct($data);
  145. }
  146. /**
  147. * 套餐名称
  148. *
  149. * Generated from protobuf field <code>string name = 1;</code>
  150. * @return string
  151. */
  152. public function getName()
  153. {
  154. return $this->name;
  155. }
  156. /**
  157. * 套餐名称
  158. *
  159. * Generated from protobuf field <code>string name = 1;</code>
  160. * @param string $var
  161. * @return $this
  162. */
  163. public function setName($var)
  164. {
  165. GPBUtil::checkString($var, True);
  166. $this->name = $var;
  167. return $this;
  168. }
  169. /**
  170. * 套餐类型
  171. *
  172. * Generated from protobuf field <code>.proto.api.PackageType type = 2;</code>
  173. * @return int
  174. */
  175. public function getType()
  176. {
  177. return $this->type;
  178. }
  179. /**
  180. * 套餐类型
  181. *
  182. * Generated from protobuf field <code>.proto.api.PackageType type = 2;</code>
  183. * @param int $var
  184. * @return $this
  185. */
  186. public function setType($var)
  187. {
  188. GPBUtil::checkEnum($var, \Proto\Api\PackageType::class);
  189. $this->type = $var;
  190. return $this;
  191. }
  192. /**
  193. * 押金
  194. *
  195. * Generated from protobuf field <code>int32 pledge = 3;</code>
  196. * @return int
  197. */
  198. public function getPledge()
  199. {
  200. return $this->pledge;
  201. }
  202. /**
  203. * 押金
  204. *
  205. * Generated from protobuf field <code>int32 pledge = 3;</code>
  206. * @param int $var
  207. * @return $this
  208. */
  209. public function setPledge($var)
  210. {
  211. GPBUtil::checkInt32($var);
  212. $this->pledge = $var;
  213. return $this;
  214. }
  215. /**
  216. * 天数
  217. *
  218. * Generated from protobuf field <code>int32 total_day = 4;</code>
  219. * @return int
  220. */
  221. public function getTotalDay()
  222. {
  223. return $this->total_day;
  224. }
  225. /**
  226. * 天数
  227. *
  228. * Generated from protobuf field <code>int32 total_day = 4;</code>
  229. * @param int $var
  230. * @return $this
  231. */
  232. public function setTotalDay($var)
  233. {
  234. GPBUtil::checkInt32($var);
  235. $this->total_day = $var;
  236. return $this;
  237. }
  238. /**
  239. * 次数
  240. *
  241. * Generated from protobuf field <code>int32 total_num = 5;</code>
  242. * @return int
  243. */
  244. public function getTotalNum()
  245. {
  246. return $this->total_num;
  247. }
  248. /**
  249. * 次数
  250. *
  251. * Generated from protobuf field <code>int32 total_num = 5;</code>
  252. * @param int $var
  253. * @return $this
  254. */
  255. public function setTotalNum($var)
  256. {
  257. GPBUtil::checkInt32($var);
  258. $this->total_num = $var;
  259. return $this;
  260. }
  261. /**
  262. * 套餐显示价格
  263. *
  264. * Generated from protobuf field <code>int32 show_money = 6;</code>
  265. * @return int
  266. */
  267. public function getShowMoney()
  268. {
  269. return $this->show_money;
  270. }
  271. /**
  272. * 套餐显示价格
  273. *
  274. * Generated from protobuf field <code>int32 show_money = 6;</code>
  275. * @param int $var
  276. * @return $this
  277. */
  278. public function setShowMoney($var)
  279. {
  280. GPBUtil::checkInt32($var);
  281. $this->show_money = $var;
  282. return $this;
  283. }
  284. /**
  285. * 套餐实际价格,元
  286. *
  287. * Generated from protobuf field <code>int32 money = 7;</code>
  288. * @return int
  289. */
  290. public function getMoney()
  291. {
  292. return $this->money;
  293. }
  294. /**
  295. * 套餐实际价格,元
  296. *
  297. * Generated from protobuf field <code>int32 money = 7;</code>
  298. * @param int $var
  299. * @return $this
  300. */
  301. public function setMoney($var)
  302. {
  303. GPBUtil::checkInt32($var);
  304. $this->money = $var;
  305. return $this;
  306. }
  307. /**
  308. * 单次换电价格,元
  309. *
  310. * Generated from protobuf field <code>int32 exchange_money = 8;</code>
  311. * @return int
  312. */
  313. public function getExchangeMoney()
  314. {
  315. return $this->exchange_money;
  316. }
  317. /**
  318. * 单次换电价格,元
  319. *
  320. * Generated from protobuf field <code>int32 exchange_money = 8;</code>
  321. * @param int $var
  322. * @return $this
  323. */
  324. public function setExchangeMoney($var)
  325. {
  326. GPBUtil::checkInt32($var);
  327. $this->exchange_money = $var;
  328. return $this;
  329. }
  330. /**
  331. * 购买限制数量
  332. *
  333. * Generated from protobuf field <code>int32 buy_limit = 9;</code>
  334. * @return int
  335. */
  336. public function getBuyLimit()
  337. {
  338. return $this->buy_limit;
  339. }
  340. /**
  341. * 购买限制数量
  342. *
  343. * Generated from protobuf field <code>int32 buy_limit = 9;</code>
  344. * @param int $var
  345. * @return $this
  346. */
  347. public function setBuyLimit($var)
  348. {
  349. GPBUtil::checkInt32($var);
  350. $this->buy_limit = $var;
  351. return $this;
  352. }
  353. /**
  354. * 上下架状态
  355. *
  356. * Generated from protobuf field <code>.proto.api.LISTED_STATUS listed_status = 10;</code>
  357. * @return int
  358. */
  359. public function getListedStatus()
  360. {
  361. return $this->listed_status;
  362. }
  363. /**
  364. * 上下架状态
  365. *
  366. * Generated from protobuf field <code>.proto.api.LISTED_STATUS listed_status = 10;</code>
  367. * @param int $var
  368. * @return $this
  369. */
  370. public function setListedStatus($var)
  371. {
  372. GPBUtil::checkEnum($var, \Proto\Api\LISTED_STATUS::class);
  373. $this->listed_status = $var;
  374. return $this;
  375. }
  376. /**
  377. * 库存
  378. *
  379. * Generated from protobuf field <code>int32 stock = 12;</code>
  380. * @return int
  381. */
  382. public function getStock()
  383. {
  384. return $this->stock;
  385. }
  386. /**
  387. * 库存
  388. *
  389. * Generated from protobuf field <code>int32 stock = 12;</code>
  390. * @param int $var
  391. * @return $this
  392. */
  393. public function setStock($var)
  394. {
  395. GPBUtil::checkInt32($var);
  396. $this->stock = $var;
  397. return $this;
  398. }
  399. /**
  400. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  401. *
  402. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 13;</code>
  403. * @return int
  404. */
  405. public function getPackageCategory()
  406. {
  407. return $this->package_category;
  408. }
  409. /**
  410. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  411. *
  412. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 13;</code>
  413. * @param int $var
  414. * @return $this
  415. */
  416. public function setPackageCategory($var)
  417. {
  418. GPBUtil::checkEnum($var, \Proto\Api\DEVICE_USE_TYPE::class);
  419. $this->package_category = $var;
  420. return $this;
  421. }
  422. /**
  423. * 支持的区县ID列表
  424. *
  425. * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 14;</code>
  426. * @return \Google\Protobuf\Internal\RepeatedField
  427. */
  428. public function getAreaList()
  429. {
  430. return $this->area_list;
  431. }
  432. /**
  433. * 支持的区县ID列表
  434. *
  435. * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 14;</code>
  436. * @param array<\Proto\Api\AreaEnt>|\Google\Protobuf\Internal\RepeatedField $var
  437. * @return $this
  438. */
  439. public function setAreaList($var)
  440. {
  441. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\AreaEnt::class);
  442. $this->area_list = $arr;
  443. return $this;
  444. }
  445. /**
  446. * 电池标签信息
  447. *
  448. * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 15;</code>
  449. * @return \Proto\Api\EntTag|null
  450. */
  451. public function getBatteryTagInfo()
  452. {
  453. return $this->battery_tag_info;
  454. }
  455. public function hasBatteryTagInfo()
  456. {
  457. return isset($this->battery_tag_info);
  458. }
  459. public function clearBatteryTagInfo()
  460. {
  461. unset($this->battery_tag_info);
  462. }
  463. /**
  464. * 电池标签信息
  465. *
  466. * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 15;</code>
  467. * @param \Proto\Api\EntTag $var
  468. * @return $this
  469. */
  470. public function setBatteryTagInfo($var)
  471. {
  472. GPBUtil::checkMessage($var, \Proto\Api\EntTag::class);
  473. $this->battery_tag_info = $var;
  474. return $this;
  475. }
  476. /**
  477. * 车型信息
  478. *
  479. * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 16;</code>
  480. * @return \Proto\Api\CarModelEnt|null
  481. */
  482. public function getCarModelInfo()
  483. {
  484. return $this->car_model_info;
  485. }
  486. public function hasCarModelInfo()
  487. {
  488. return isset($this->car_model_info);
  489. }
  490. public function clearCarModelInfo()
  491. {
  492. unset($this->car_model_info);
  493. }
  494. /**
  495. * 车型信息
  496. *
  497. * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 16;</code>
  498. * @param \Proto\Api\CarModelEnt $var
  499. * @return $this
  500. */
  501. public function setCarModelInfo($var)
  502. {
  503. GPBUtil::checkMessage($var, \Proto\Api\CarModelEnt::class);
  504. $this->car_model_info = $var;
  505. return $this;
  506. }
  507. }