| 1 | <?php |
||
| 7 | class Dimension extends Model |
||
| 8 | { |
||
| 9 | |||
| 10 | protected $id = null; |
||
| 11 | |||
| 12 | protected $directId = null; |
||
| 13 | |||
| 14 | protected $name = null; |
||
| 15 | |||
| 16 | protected $mappingClasses = []; |
||
| 17 | |||
| 18 | protected $propNameMap = [ |
||
| 19 | 'direct_id' => 'directId' |
||
| 20 | ]; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Retrieve the id property |
||
| 24 | * |
||
| 25 | * @return string|null |
||
| 26 | */ |
||
| 27 | 6 | public function getId() |
|
| 31 | |||
| 32 | /** |
||
| 33 | * Set the id property |
||
| 34 | * |
||
| 35 | * @param string $id |
||
| 36 | * @return $this |
||
| 37 | */ |
||
| 38 | 4 | public function setId($id) |
|
| 43 | |||
| 44 | /** |
||
| 45 | * Retrieve the directId property |
||
| 46 | * |
||
| 47 | * @return string|null |
||
| 48 | */ |
||
| 49 | 1 | public function getDirectId() |
|
| 53 | |||
| 54 | /** |
||
| 55 | * Set the directId property |
||
| 56 | * |
||
| 57 | * @param string $directId |
||
| 58 | * @return $this |
||
| 59 | */ |
||
| 60 | 1 | public function setDirectId($directId) |
|
| 65 | |||
| 66 | /** |
||
| 67 | * Retrieve the name property |
||
| 68 | * |
||
| 69 | * @return string|null |
||
| 70 | */ |
||
| 71 | 6 | public function getName() |
|
| 75 | |||
| 76 | /** |
||
| 77 | * Set the name property |
||
| 78 | * |
||
| 79 | * @param string $name |
||
| 80 | * @return $this |
||
| 81 | */ |
||
| 82 | 4 | public function setName($name) |
|
| 87 | } |
||
| 88 |