| 1 | <?php |
||
| 15 | class BookedCreditType |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var int |
||
| 19 | * |
||
| 20 | * @ORM\Id |
||
| 21 | * @ORM\Column(type="integer") |
||
| 22 | * @ORM\GeneratedValue(strategy="AUTO") |
||
| 23 | */ |
||
| 24 | protected $id; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | * |
||
| 29 | * @ORM\Column(type="string", name="short_name", nullable=true) |
||
| 30 | */ |
||
| 31 | protected $shortName; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var string |
||
| 35 | * |
||
| 36 | * @ORM\Column(type="string", name="label", nullable=true) |
||
| 37 | */ |
||
| 38 | protected $label; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return int |
||
| 42 | */ |
||
| 43 | public function getId() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @param int $id |
||
| 50 | */ |
||
| 51 | public function setId($id) |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @return string |
||
| 58 | */ |
||
| 59 | public function getShortName() |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @param string $shortName |
||
| 66 | */ |
||
| 67 | public function setShortName($shortName) |
||
| 71 | |||
| 72 | /** |
||
| 73 | * @return string |
||
| 74 | */ |
||
| 75 | public function getLabel() |
||
| 79 | |||
| 80 | /** |
||
| 81 | * @param string $label |
||
| 82 | */ |
||
| 83 | public function setLabel($label) |
||
| 87 | } |
||
| 88 |