mirror of
https://github.com/Lukas0025/YAGS.git
synced 2025-04-04 06:51:33 +01:00
28 lines
1.2 KiB
PHP
28 lines
1.2 KiB
PHP
<?php
|
|
namespace DAL;
|
|
|
|
class receiver extends \wsos\database\core\row {
|
|
public \wsos\database\types\reference $station; // station with antena
|
|
public \wsos\database\types\reference $antenna; // YAGI, DISH, ....
|
|
public \wsos\database\types\integer $centerFrequency; // in Hz
|
|
public \wsos\database\types\integer $bandwidth; // in Hz
|
|
public \wsos\database\types\integer $gain; // gain of reciver setup
|
|
|
|
function __construct(
|
|
$id = null,
|
|
$station = null,
|
|
$antenna = null,
|
|
$centerFrequency = 0,
|
|
$bandwidth = 0,
|
|
$gain = 0
|
|
) {
|
|
parent::__construct($id);
|
|
$this->object = new \wsos\database\types\reference($station, \DAL\station::class);
|
|
$this->antenna = new \wsos\database\types\reference($antenna, \DAL\antenna::class);
|
|
|
|
$this->centerFrequency = new \wsos\database\types\integer($centerFrequency);
|
|
$this->bandwidth = new \wsos\database\types\integer($bandwidth);
|
|
$this->gain = new \wsos\database\types\integer($gain);
|
|
}
|
|
}
|
|
?>
|