12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace models;
- #[\AllowDynamicProperties]
- class World {
- /**
- *
- * @id
- * @column("name"=>"id","nullable"=>false,"dbType"=>"int(11)")
- */
- public $id;
- /**
- *
- * @column("name"=>"randomNumber","nullable"=>false,"dbType"=>"int(11)")
- */
- public $randomNumber;
- /**
- *
- * @return mixed
- */
- public function getId() {
- return $this->id;
- }
- /**
- *
- * @return mixed
- */
- public function getRandomNumber() {
- return $this->randomNumber;
- }
- /**
- *
- * @param mixed $id
- */
- public function setId($id) {
- $this->id = $id;
- }
- /**
- *
- * @param mixed $randomNumber
- */
- public function setRandomNumber($randomNumber) {
- $this->randomNumber = $randomNumber;
- }
- }
|