1 | <?php |
||
21 | class FilesystemCategoryEntity extends AbstractEntity |
||
22 | { |
||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $container = [ |
||
27 | 'id_filesystem_category' => null, |
||
28 | 'fk_application' => null, |
||
29 | 'name' => null, |
||
30 | 'title' => null, |
||
31 | 'description' => null, |
||
32 | 'item_order' => null, |
||
33 | 'date_created' => null, |
||
34 | 'date_modified' => null, |
||
35 | ]; |
||
36 | |||
37 | /** |
||
38 | * @param int $identifier |
||
39 | * @return FilesystemCategoryEntity |
||
40 | */ |
||
41 | public function setFilesystemCategoryId(int $identifier) : FilesystemCategoryEntity |
||
47 | |||
48 | /** |
||
49 | * @return int|null |
||
50 | */ |
||
51 | public function getFilesystemCategoryId() : ? int |
||
57 | |||
58 | /** |
||
59 | * @param int $applicationIdentifier |
||
60 | * @return FilesystemCategoryEntity |
||
61 | */ |
||
62 | public function setApplicationId(int $applicationIdentifier) : FilesystemCategoryEntity |
||
68 | |||
69 | /** |
||
70 | * @return int|null |
||
71 | */ |
||
72 | public function getApplicationId() : ? int |
||
78 | |||
79 | /** |
||
80 | * @param string $name |
||
81 | * @return FilesystemCategoryEntity |
||
82 | */ |
||
83 | public function setName(string $name) : FilesystemCategoryEntity |
||
89 | |||
90 | /** |
||
91 | * @return null|string |
||
92 | */ |
||
93 | public function getName() : ? string |
||
97 | |||
98 | /** |
||
99 | * @param string $title |
||
100 | * @return FilesystemCategoryEntity |
||
101 | */ |
||
102 | public function setTitle(string $title) : FilesystemCategoryEntity |
||
108 | |||
109 | /** |
||
110 | * @return null|string |
||
111 | */ |
||
112 | public function getTitle() : ? string |
||
116 | |||
117 | /** |
||
118 | * @param string $description |
||
119 | * @return FilesystemCategoryEntity |
||
120 | */ |
||
121 | public function setDescription(string $description) : FilesystemCategoryEntity |
||
127 | |||
128 | /** |
||
129 | * @return null|string |
||
130 | */ |
||
131 | public function getDescription() : ? string |
||
135 | |||
136 | /** |
||
137 | * @param string $itemOrder |
||
138 | * @return FilesystemCategoryEntity |
||
139 | */ |
||
140 | public function setItemOrder(string $itemOrder) : FilesystemCategoryEntity |
||
146 | |||
147 | /** |
||
148 | * @return null|string |
||
149 | */ |
||
150 | public function getItemOrder() : ? string |
||
154 | |||
155 | /** |
||
156 | * @param DateTime $dateTime |
||
157 | * @return FilesystemCategoryEntity |
||
158 | */ |
||
159 | public function setDateCreated(DateTime $dateTime) : FilesystemCategoryEntity |
||
165 | |||
166 | /** |
||
167 | * @return null|DateTime |
||
168 | */ |
||
169 | public function getDateCreated() : ? DateTime |
||
175 | |||
176 | /** |
||
177 | * @param DateTime $dateTime |
||
178 | * @return FilesystemCategoryEntity |
||
179 | */ |
||
180 | public function setDateModified(DateTime $dateTime) : FilesystemCategoryEntity |
||
186 | |||
187 | /** |
||
188 | * @return null|DateTime |
||
189 | */ |
||
190 | public function getDateModified() : ? DateTime |
||
196 | } |
||
197 |