You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.5 KiB
79 lines
1.5 KiB
<?php
|
|
|
|
namespace Database;
|
|
|
|
class AnalyzeEntity
|
|
{
|
|
private $idFc;
|
|
private $altitude;
|
|
private $time;
|
|
private $temperature;
|
|
private $bpm;
|
|
private $longitude;
|
|
private $latitude;
|
|
private $idactivity;
|
|
public function getIdFC()
|
|
{
|
|
return $this->idFc;
|
|
}
|
|
public function getAltitude()
|
|
{
|
|
return $this->altitude;
|
|
}
|
|
public function getTime()
|
|
{
|
|
return $this->temps;
|
|
}
|
|
public function getTemperature()
|
|
{
|
|
return $this->temperature;
|
|
}
|
|
public function getBpm()
|
|
{
|
|
return $this->bpm;
|
|
}
|
|
public function getLongitude()
|
|
{
|
|
return $this->longitude;
|
|
}
|
|
public function getLatitude()
|
|
{
|
|
return $this->latitude;
|
|
}
|
|
public function getIdActivity()
|
|
{
|
|
return $this->idactivity;
|
|
}
|
|
public function setIdFC($idFc)
|
|
{
|
|
$this->idFc = $idFc;
|
|
}
|
|
public function setAltitude($altitude)
|
|
{
|
|
$this->altitude = $altitude;
|
|
}
|
|
public function setTime($time)
|
|
{
|
|
$this->time = $time;
|
|
}
|
|
public function setTemperature($temperature)
|
|
{
|
|
$this->temperature = $temperature;
|
|
}
|
|
public function setBpm($bpm)
|
|
{
|
|
$this->bpm = $bpm;
|
|
}
|
|
public function setLongitude($longitude)
|
|
{
|
|
$this->longitude = $longitude;
|
|
}
|
|
public function setLatitude($latitude)
|
|
{
|
|
$this->latitude = $latitude;
|
|
}
|
|
public function setIdActivity($idactivity)
|
|
{
|
|
$this->idactivity = $idactivity;
|
|
}
|
|
} |