123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/EntCarModel.proto
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>proto.api.CarModelEnt</code>
- */
- class CarModelEnt extends \Google\Protobuf\Internal\Message
- {
- /**
- * 车型名称
- *
- * Generated from protobuf field <code>string model_name = 1;</code>
- */
- protected $model_name = '';
- /**
- * 车型编号
- *
- * Generated from protobuf field <code>string model_code = 2;</code>
- */
- protected $model_code = '';
- /**
- * 车型图片
- *
- * Generated from protobuf field <code>repeated string model_images = 3;</code>
- */
- private $model_images;
- /**
- * 车型ID
- *
- * Generated from protobuf field <code>string model_id = 4;</code>
- */
- protected $model_id = '';
- /**
- * 数据时间
- *
- * Generated from protobuf field <code>.proto.api.DataTime data_time = 5;</code>
- */
- protected $data_time = null;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $model_name
- * 车型名称
- * @type string $model_code
- * 车型编号
- * @type array<string>|\Google\Protobuf\Internal\RepeatedField $model_images
- * 车型图片
- * @type string $model_id
- * 车型ID
- * @type \Proto\Api\DataTime $data_time
- * 数据时间
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntCarModel::initOnce();
- parent::__construct($data);
- }
- /**
- * 车型名称
- *
- * Generated from protobuf field <code>string model_name = 1;</code>
- * @return string
- */
- public function getModelName()
- {
- return $this->model_name;
- }
- /**
- * 车型名称
- *
- * Generated from protobuf field <code>string model_name = 1;</code>
- * @param string $var
- * @return $this
- */
- public function setModelName($var)
- {
- GPBUtil::checkString($var, True);
- $this->model_name = $var;
- return $this;
- }
- /**
- * 车型编号
- *
- * Generated from protobuf field <code>string model_code = 2;</code>
- * @return string
- */
- public function getModelCode()
- {
- return $this->model_code;
- }
- /**
- * 车型编号
- *
- * Generated from protobuf field <code>string model_code = 2;</code>
- * @param string $var
- * @return $this
- */
- public function setModelCode($var)
- {
- GPBUtil::checkString($var, True);
- $this->model_code = $var;
- return $this;
- }
- /**
- * 车型图片
- *
- * Generated from protobuf field <code>repeated string model_images = 3;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getModelImages()
- {
- return $this->model_images;
- }
- /**
- * 车型图片
- *
- * Generated from protobuf field <code>repeated string model_images = 3;</code>
- * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setModelImages($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
- $this->model_images = $arr;
- return $this;
- }
- /**
- * 车型ID
- *
- * Generated from protobuf field <code>string model_id = 4;</code>
- * @return string
- */
- public function getModelId()
- {
- return $this->model_id;
- }
- /**
- * 车型ID
- *
- * Generated from protobuf field <code>string model_id = 4;</code>
- * @param string $var
- * @return $this
- */
- public function setModelId($var)
- {
- GPBUtil::checkString($var, True);
- $this->model_id = $var;
- return $this;
- }
- /**
- * 数据时间
- *
- * Generated from protobuf field <code>.proto.api.DataTime data_time = 5;</code>
- * @return \Proto\Api\DataTime|null
- */
- public function getDataTime()
- {
- return $this->data_time;
- }
- public function hasDataTime()
- {
- return isset($this->data_time);
- }
- public function clearDataTime()
- {
- unset($this->data_time);
- }
- /**
- * 数据时间
- *
- * Generated from protobuf field <code>.proto.api.DataTime data_time = 5;</code>
- * @param \Proto\Api\DataTime $var
- * @return $this
- */
- public function setDataTime($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\DataTime::class);
- $this->data_time = $var;
- return $this;
- }
- }
|