proto.api.CarModelEnt
*/
class CarModelEnt extends \Google\Protobuf\Internal\Message
{
/**
* 车型名称
*
* Generated from protobuf field string model_name = 1;
*/
protected $model_name = '';
/**
* 车型编号
*
* Generated from protobuf field string model_code = 2;
*/
protected $model_code = '';
/**
* 车型图片
*
* Generated from protobuf field repeated string model_images = 3;
*/
private $model_images;
/**
* 车型ID
*
* Generated from protobuf field string model_id = 4;
*/
protected $model_id = '';
/**
* 数据时间
*
* Generated from protobuf field .proto.api.DataTime data_time = 5;
*/
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|\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 string model_name = 1;
* @return string
*/
public function getModelName()
{
return $this->model_name;
}
/**
* 车型名称
*
* Generated from protobuf field string model_name = 1;
* @param string $var
* @return $this
*/
public function setModelName($var)
{
GPBUtil::checkString($var, True);
$this->model_name = $var;
return $this;
}
/**
* 车型编号
*
* Generated from protobuf field string model_code = 2;
* @return string
*/
public function getModelCode()
{
return $this->model_code;
}
/**
* 车型编号
*
* Generated from protobuf field string model_code = 2;
* @param string $var
* @return $this
*/
public function setModelCode($var)
{
GPBUtil::checkString($var, True);
$this->model_code = $var;
return $this;
}
/**
* 车型图片
*
* Generated from protobuf field repeated string model_images = 3;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getModelImages()
{
return $this->model_images;
}
/**
* 车型图片
*
* Generated from protobuf field repeated string model_images = 3;
* @param array|\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 string model_id = 4;
* @return string
*/
public function getModelId()
{
return $this->model_id;
}
/**
* 车型ID
*
* Generated from protobuf field string model_id = 4;
* @param string $var
* @return $this
*/
public function setModelId($var)
{
GPBUtil::checkString($var, True);
$this->model_id = $var;
return $this;
}
/**
* 数据时间
*
* Generated from protobuf field .proto.api.DataTime data_time = 5;
* @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 .proto.api.DataTime data_time = 5;
* @param \Proto\Api\DataTime $var
* @return $this
*/
public function setDataTime($var)
{
GPBUtil::checkMessage($var, \Proto\Api\DataTime::class);
$this->data_time = $var;
return $this;
}
}