123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace models;
- 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;
- }
- }
|