CarModelEnt.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntCarModel.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.CarModelEnt</code>
  11. */
  12. class CarModelEnt extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 车型名称
  16. *
  17. * Generated from protobuf field <code>string model_name = 1;</code>
  18. */
  19. protected $model_name = '';
  20. /**
  21. * 车型编号
  22. *
  23. * Generated from protobuf field <code>string model_code = 2;</code>
  24. */
  25. protected $model_code = '';
  26. /**
  27. * 车型图片
  28. *
  29. * Generated from protobuf field <code>repeated string model_images = 3;</code>
  30. */
  31. private $model_images;
  32. /**
  33. * 车型ID
  34. *
  35. * Generated from protobuf field <code>string model_id = 4;</code>
  36. */
  37. protected $model_id = '';
  38. /**
  39. * 数据时间
  40. *
  41. * Generated from protobuf field <code>.proto.api.DataTime data_time = 5;</code>
  42. */
  43. protected $data_time = null;
  44. /**
  45. * Constructor.
  46. *
  47. * @param array $data {
  48. * Optional. Data for populating the Message object.
  49. *
  50. * @type string $model_name
  51. * 车型名称
  52. * @type string $model_code
  53. * 车型编号
  54. * @type array<string>|\Google\Protobuf\Internal\RepeatedField $model_images
  55. * 车型图片
  56. * @type string $model_id
  57. * 车型ID
  58. * @type \Proto\Api\DataTime $data_time
  59. * 数据时间
  60. * }
  61. */
  62. public function __construct($data = NULL) {
  63. \GPBMetadata\Api\EntCarModel::initOnce();
  64. parent::__construct($data);
  65. }
  66. /**
  67. * 车型名称
  68. *
  69. * Generated from protobuf field <code>string model_name = 1;</code>
  70. * @return string
  71. */
  72. public function getModelName()
  73. {
  74. return $this->model_name;
  75. }
  76. /**
  77. * 车型名称
  78. *
  79. * Generated from protobuf field <code>string model_name = 1;</code>
  80. * @param string $var
  81. * @return $this
  82. */
  83. public function setModelName($var)
  84. {
  85. GPBUtil::checkString($var, True);
  86. $this->model_name = $var;
  87. return $this;
  88. }
  89. /**
  90. * 车型编号
  91. *
  92. * Generated from protobuf field <code>string model_code = 2;</code>
  93. * @return string
  94. */
  95. public function getModelCode()
  96. {
  97. return $this->model_code;
  98. }
  99. /**
  100. * 车型编号
  101. *
  102. * Generated from protobuf field <code>string model_code = 2;</code>
  103. * @param string $var
  104. * @return $this
  105. */
  106. public function setModelCode($var)
  107. {
  108. GPBUtil::checkString($var, True);
  109. $this->model_code = $var;
  110. return $this;
  111. }
  112. /**
  113. * 车型图片
  114. *
  115. * Generated from protobuf field <code>repeated string model_images = 3;</code>
  116. * @return \Google\Protobuf\Internal\RepeatedField
  117. */
  118. public function getModelImages()
  119. {
  120. return $this->model_images;
  121. }
  122. /**
  123. * 车型图片
  124. *
  125. * Generated from protobuf field <code>repeated string model_images = 3;</code>
  126. * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
  127. * @return $this
  128. */
  129. public function setModelImages($var)
  130. {
  131. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
  132. $this->model_images = $arr;
  133. return $this;
  134. }
  135. /**
  136. * 车型ID
  137. *
  138. * Generated from protobuf field <code>string model_id = 4;</code>
  139. * @return string
  140. */
  141. public function getModelId()
  142. {
  143. return $this->model_id;
  144. }
  145. /**
  146. * 车型ID
  147. *
  148. * Generated from protobuf field <code>string model_id = 4;</code>
  149. * @param string $var
  150. * @return $this
  151. */
  152. public function setModelId($var)
  153. {
  154. GPBUtil::checkString($var, True);
  155. $this->model_id = $var;
  156. return $this;
  157. }
  158. /**
  159. * 数据时间
  160. *
  161. * Generated from protobuf field <code>.proto.api.DataTime data_time = 5;</code>
  162. * @return \Proto\Api\DataTime|null
  163. */
  164. public function getDataTime()
  165. {
  166. return $this->data_time;
  167. }
  168. public function hasDataTime()
  169. {
  170. return isset($this->data_time);
  171. }
  172. public function clearDataTime()
  173. {
  174. unset($this->data_time);
  175. }
  176. /**
  177. * 数据时间
  178. *
  179. * Generated from protobuf field <code>.proto.api.DataTime data_time = 5;</code>
  180. * @param \Proto\Api\DataTime $var
  181. * @return $this
  182. */
  183. public function setDataTime($var)
  184. {
  185. GPBUtil::checkMessage($var, \Proto\Api\DataTime::class);
  186. $this->data_time = $var;
  187. return $this;
  188. }
  189. }