EntPackage.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntPackage.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.EntPackage</code>
  11. */
  12. class EntPackage 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. * 套餐code
  76. *
  77. * Generated from protobuf field <code>string code = 11;</code>
  78. */
  79. protected $code = '';
  80. /**
  81. * Constructor.
  82. *
  83. * @param array $data {
  84. * Optional. Data for populating the Message object.
  85. *
  86. * @type string $name
  87. * 套餐名称
  88. * @type int $type
  89. * 套餐类型
  90. * @type int $pledge
  91. * 押金
  92. * @type int $total_day
  93. * 天数
  94. * @type int $total_num
  95. * 次数
  96. * @type int $show_money
  97. * 套餐显示价格
  98. * @type int $money
  99. * 套餐实际价格,元
  100. * @type int $exchange_money
  101. * 单次换电价格,元
  102. * @type int $buy_limit
  103. * 购买限制数量
  104. * @type int $listed_status
  105. * 上下架状态
  106. * @type string $code
  107. * 套餐code
  108. * }
  109. */
  110. public function __construct($data = NULL) {
  111. \GPBMetadata\Api\EntPackage::initOnce();
  112. parent::__construct($data);
  113. }
  114. /**
  115. * 套餐名称
  116. *
  117. * Generated from protobuf field <code>string name = 1;</code>
  118. * @return string
  119. */
  120. public function getName()
  121. {
  122. return $this->name;
  123. }
  124. /**
  125. * 套餐名称
  126. *
  127. * Generated from protobuf field <code>string name = 1;</code>
  128. * @param string $var
  129. * @return $this
  130. */
  131. public function setName($var)
  132. {
  133. GPBUtil::checkString($var, True);
  134. $this->name = $var;
  135. return $this;
  136. }
  137. /**
  138. * 套餐类型
  139. *
  140. * Generated from protobuf field <code>.proto.api.PackageType type = 2;</code>
  141. * @return int
  142. */
  143. public function getType()
  144. {
  145. return $this->type;
  146. }
  147. /**
  148. * 套餐类型
  149. *
  150. * Generated from protobuf field <code>.proto.api.PackageType type = 2;</code>
  151. * @param int $var
  152. * @return $this
  153. */
  154. public function setType($var)
  155. {
  156. GPBUtil::checkEnum($var, \Proto\Api\PackageType::class);
  157. $this->type = $var;
  158. return $this;
  159. }
  160. /**
  161. * 押金
  162. *
  163. * Generated from protobuf field <code>int32 pledge = 3;</code>
  164. * @return int
  165. */
  166. public function getPledge()
  167. {
  168. return $this->pledge;
  169. }
  170. /**
  171. * 押金
  172. *
  173. * Generated from protobuf field <code>int32 pledge = 3;</code>
  174. * @param int $var
  175. * @return $this
  176. */
  177. public function setPledge($var)
  178. {
  179. GPBUtil::checkInt32($var);
  180. $this->pledge = $var;
  181. return $this;
  182. }
  183. /**
  184. * 天数
  185. *
  186. * Generated from protobuf field <code>int32 total_day = 4;</code>
  187. * @return int
  188. */
  189. public function getTotalDay()
  190. {
  191. return $this->total_day;
  192. }
  193. /**
  194. * 天数
  195. *
  196. * Generated from protobuf field <code>int32 total_day = 4;</code>
  197. * @param int $var
  198. * @return $this
  199. */
  200. public function setTotalDay($var)
  201. {
  202. GPBUtil::checkInt32($var);
  203. $this->total_day = $var;
  204. return $this;
  205. }
  206. /**
  207. * 次数
  208. *
  209. * Generated from protobuf field <code>int32 total_num = 5;</code>
  210. * @return int
  211. */
  212. public function getTotalNum()
  213. {
  214. return $this->total_num;
  215. }
  216. /**
  217. * 次数
  218. *
  219. * Generated from protobuf field <code>int32 total_num = 5;</code>
  220. * @param int $var
  221. * @return $this
  222. */
  223. public function setTotalNum($var)
  224. {
  225. GPBUtil::checkInt32($var);
  226. $this->total_num = $var;
  227. return $this;
  228. }
  229. /**
  230. * 套餐显示价格
  231. *
  232. * Generated from protobuf field <code>int32 show_money = 6;</code>
  233. * @return int
  234. */
  235. public function getShowMoney()
  236. {
  237. return $this->show_money;
  238. }
  239. /**
  240. * 套餐显示价格
  241. *
  242. * Generated from protobuf field <code>int32 show_money = 6;</code>
  243. * @param int $var
  244. * @return $this
  245. */
  246. public function setShowMoney($var)
  247. {
  248. GPBUtil::checkInt32($var);
  249. $this->show_money = $var;
  250. return $this;
  251. }
  252. /**
  253. * 套餐实际价格,元
  254. *
  255. * Generated from protobuf field <code>int32 money = 7;</code>
  256. * @return int
  257. */
  258. public function getMoney()
  259. {
  260. return $this->money;
  261. }
  262. /**
  263. * 套餐实际价格,元
  264. *
  265. * Generated from protobuf field <code>int32 money = 7;</code>
  266. * @param int $var
  267. * @return $this
  268. */
  269. public function setMoney($var)
  270. {
  271. GPBUtil::checkInt32($var);
  272. $this->money = $var;
  273. return $this;
  274. }
  275. /**
  276. * 单次换电价格,元
  277. *
  278. * Generated from protobuf field <code>int32 exchange_money = 8;</code>
  279. * @return int
  280. */
  281. public function getExchangeMoney()
  282. {
  283. return $this->exchange_money;
  284. }
  285. /**
  286. * 单次换电价格,元
  287. *
  288. * Generated from protobuf field <code>int32 exchange_money = 8;</code>
  289. * @param int $var
  290. * @return $this
  291. */
  292. public function setExchangeMoney($var)
  293. {
  294. GPBUtil::checkInt32($var);
  295. $this->exchange_money = $var;
  296. return $this;
  297. }
  298. /**
  299. * 购买限制数量
  300. *
  301. * Generated from protobuf field <code>int32 buy_limit = 9;</code>
  302. * @return int
  303. */
  304. public function getBuyLimit()
  305. {
  306. return $this->buy_limit;
  307. }
  308. /**
  309. * 购买限制数量
  310. *
  311. * Generated from protobuf field <code>int32 buy_limit = 9;</code>
  312. * @param int $var
  313. * @return $this
  314. */
  315. public function setBuyLimit($var)
  316. {
  317. GPBUtil::checkInt32($var);
  318. $this->buy_limit = $var;
  319. return $this;
  320. }
  321. /**
  322. * 上下架状态
  323. *
  324. * Generated from protobuf field <code>.proto.api.LISTED_STATUS listed_status = 10;</code>
  325. * @return int
  326. */
  327. public function getListedStatus()
  328. {
  329. return $this->listed_status;
  330. }
  331. /**
  332. * 上下架状态
  333. *
  334. * Generated from protobuf field <code>.proto.api.LISTED_STATUS listed_status = 10;</code>
  335. * @param int $var
  336. * @return $this
  337. */
  338. public function setListedStatus($var)
  339. {
  340. GPBUtil::checkEnum($var, \Proto\Api\LISTED_STATUS::class);
  341. $this->listed_status = $var;
  342. return $this;
  343. }
  344. /**
  345. * 套餐code
  346. *
  347. * Generated from protobuf field <code>string code = 11;</code>
  348. * @return string
  349. */
  350. public function getCode()
  351. {
  352. return $this->code;
  353. }
  354. /**
  355. * 套餐code
  356. *
  357. * Generated from protobuf field <code>string code = 11;</code>
  358. * @param string $var
  359. * @return $this
  360. */
  361. public function setCode($var)
  362. {
  363. GPBUtil::checkString($var, True);
  364. $this->code = $var;
  365. return $this;
  366. }
  367. }