1 | <?php |
||
10 | class CorpMemberTracking |
||
11 | { |
||
12 | /** |
||
13 | * @ORM\Id @ORM\GeneratedValue @ORM\Column(name="ID", type="bigint", options={"unsigned"=true}) |
||
14 | */ |
||
15 | private $id; |
||
16 | |||
17 | /** |
||
18 | * @ORM\Column(name="ownerID", type="bigint", options={"unsigned"=true}) |
||
19 | */ |
||
20 | private $ownerId; |
||
21 | |||
22 | /** |
||
23 | * @ORM\Column(name="characterID", type="bigint", options={"unsigned"=true}) |
||
24 | */ |
||
25 | private $characterId; |
||
26 | |||
27 | /** |
||
28 | * @ORM\Column(name="name", type="string") |
||
29 | */ |
||
30 | private $name; |
||
31 | |||
32 | /** |
||
33 | * @ORM\Column(name="startDateTime", type="datetime") |
||
34 | */ |
||
35 | private $startDateTime; |
||
36 | |||
37 | /** |
||
38 | * @ORM\Column(name="baseID", type="bigint", options={"unsigned"=true}) |
||
39 | */ |
||
40 | private $baseId; |
||
41 | |||
42 | /** |
||
43 | * @ORM\Column(name="base", type="string") |
||
44 | */ |
||
45 | private $base; |
||
46 | |||
47 | /** |
||
48 | * @ORM\Column(name="title", type="text") |
||
49 | */ |
||
50 | private $title; |
||
51 | |||
52 | /** |
||
53 | * @ORM\Column(name="logonDateTime", type="datetime") |
||
54 | */ |
||
55 | private $logonDateTime; |
||
56 | |||
57 | /** |
||
58 | * @ORM\Column(name="logoffDateTime", type="datetime") |
||
59 | */ |
||
60 | private $logoffDateTime; |
||
61 | |||
62 | /** |
||
63 | * @ORM\Column(name="locationID", type="bigint", options={"unsigned"=true}) |
||
64 | */ |
||
65 | private $locationId; |
||
66 | |||
67 | /** |
||
68 | * @ORM\Column(name="location", type="string") |
||
69 | */ |
||
70 | private $location; |
||
71 | |||
72 | /** |
||
73 | * @ORM\Column(name="shipTypeID", type="bigint", options={"unsigned"=true}) |
||
74 | */ |
||
75 | private $shipTypeId; |
||
76 | |||
77 | /** |
||
78 | * @ORM\Column(name="shipType", type="string") |
||
79 | */ |
||
80 | private $shipType; |
||
81 | |||
82 | /** |
||
83 | * @ORM\Column(name="roles", type="bigint", options={"unsigned"=true}) |
||
84 | */ |
||
85 | private $roles; |
||
86 | |||
87 | /** |
||
88 | * @ORM\Column(name="grantableRoles", type="bigint", options={"unsigned"=true}) |
||
89 | */ |
||
90 | private $grantableRoles; |
||
91 | |||
92 | /** |
||
93 | * Get id |
||
94 | * |
||
95 | * @return integer |
||
96 | */ |
||
97 | public function getId() |
||
101 | |||
102 | /** |
||
103 | * Set ownerId |
||
104 | * |
||
105 | * @param integer $ownerId |
||
106 | * @return CorpMemberTracking |
||
107 | */ |
||
108 | public function setOwnerId($ownerId) |
||
109 | { |
||
110 | $this->ownerId = $ownerId; |
||
111 | |||
112 | return $this; |
||
113 | } |
||
114 | |||
115 | /** |
||
116 | * Get ownerId |
||
117 | * |
||
118 | * @return integer |
||
119 | */ |
||
120 | public function getOwnerId() |
||
124 | |||
125 | /** |
||
126 | * Set characterId |
||
127 | * |
||
128 | * @param integer $characterId |
||
129 | * @return CorpMemberTracking |
||
130 | */ |
||
131 | public function setCharacterId($characterId) |
||
132 | { |
||
133 | $this->characterId = $characterId; |
||
134 | |||
135 | return $this; |
||
136 | } |
||
137 | |||
138 | /** |
||
139 | * Get characterId |
||
140 | * |
||
141 | * @return integer |
||
142 | */ |
||
143 | public function getCharacterId() |
||
147 | |||
148 | /** |
||
149 | * Set name |
||
150 | * |
||
151 | * @param string $name |
||
152 | * @return CorpMemberTracking |
||
153 | */ |
||
154 | public function setName($name) |
||
155 | { |
||
156 | $this->name = $name; |
||
157 | |||
158 | return $this; |
||
159 | } |
||
160 | |||
161 | /** |
||
162 | * Get name |
||
163 | * |
||
164 | * @return string |
||
165 | */ |
||
166 | public function getName() |
||
170 | |||
171 | /** |
||
172 | * Set startDateTime |
||
173 | * |
||
174 | * @param \DateTime $startDateTime |
||
175 | * @return CorpMemberTracking |
||
176 | */ |
||
177 | public function setStartDateTime($startDateTime) |
||
178 | { |
||
179 | $this->startDateTime = $startDateTime; |
||
180 | |||
181 | return $this; |
||
182 | } |
||
183 | |||
184 | /** |
||
185 | * Get startDateTime |
||
186 | * |
||
187 | * @return \DateTime |
||
188 | */ |
||
189 | public function getStartDateTime() |
||
193 | |||
194 | /** |
||
195 | * Set baseId |
||
196 | * |
||
197 | * @param integer $baseId |
||
198 | * @return CorpMemberTracking |
||
199 | */ |
||
200 | public function setBaseId($baseId) |
||
201 | { |
||
202 | $this->baseId = $baseId; |
||
203 | |||
204 | return $this; |
||
205 | } |
||
206 | |||
207 | /** |
||
208 | * Get baseId |
||
209 | * |
||
210 | * @return integer |
||
211 | */ |
||
212 | public function getBaseId() |
||
216 | |||
217 | /** |
||
218 | * Set base |
||
219 | * |
||
220 | * @param string $base |
||
221 | * @return CorpMemberTracking |
||
222 | */ |
||
223 | public function setBase($base) |
||
224 | { |
||
225 | $this->base = $base; |
||
226 | |||
227 | return $this; |
||
228 | } |
||
229 | |||
230 | /** |
||
231 | * Get base |
||
232 | * |
||
233 | * @return string |
||
234 | */ |
||
235 | public function getBase() |
||
239 | |||
240 | /** |
||
241 | * Set title |
||
242 | * |
||
243 | * @param string $title |
||
244 | * @return CorpMemberTracking |
||
245 | */ |
||
246 | public function setTitle($title) |
||
247 | { |
||
248 | $this->title = $title; |
||
249 | |||
250 | return $this; |
||
251 | } |
||
252 | |||
253 | /** |
||
254 | * Get title |
||
255 | * |
||
256 | * @return string |
||
257 | */ |
||
258 | public function getTitle() |
||
262 | |||
263 | /** |
||
264 | * Set logonDateTime |
||
265 | * |
||
266 | * @param \DateTime $logonDateTime |
||
267 | * @return CorpMemberTracking |
||
268 | */ |
||
269 | public function setLogonDateTime($logonDateTime) |
||
270 | { |
||
271 | $this->logonDateTime = $logonDateTime; |
||
272 | |||
273 | return $this; |
||
274 | } |
||
275 | |||
276 | /** |
||
277 | * Get logonDateTime |
||
278 | * |
||
279 | * @return \DateTime |
||
280 | */ |
||
281 | public function getLogonDateTime() |
||
285 | |||
286 | /** |
||
287 | * Set logoffDateTime |
||
288 | * |
||
289 | * @param \DateTime $logoffDateTime |
||
290 | * @return CorpMemberTracking |
||
291 | */ |
||
292 | public function setLogoffDateTime($logoffDateTime) |
||
293 | { |
||
294 | $this->logoffDateTime = $logoffDateTime; |
||
295 | |||
296 | return $this; |
||
297 | } |
||
298 | |||
299 | /** |
||
300 | * Get logoffDateTime |
||
301 | * |
||
302 | * @return \DateTime |
||
303 | */ |
||
304 | public function getLogoffDateTime() |
||
308 | |||
309 | /** |
||
310 | * Set locationId |
||
311 | * |
||
312 | * @param integer $locationId |
||
313 | * @return CorpMemberTracking |
||
314 | */ |
||
315 | public function setLocationId($locationId) |
||
316 | { |
||
317 | $this->locationId = $locationId; |
||
318 | |||
319 | return $this; |
||
320 | } |
||
321 | |||
322 | /** |
||
323 | * Get locationId |
||
324 | * |
||
325 | * @return integer |
||
326 | */ |
||
327 | public function getLocationId() |
||
331 | |||
332 | /** |
||
333 | * Set location |
||
334 | * |
||
335 | * @param string $location |
||
336 | * @return CorpMemberTracking |
||
337 | */ |
||
338 | public function setLocation($location) |
||
339 | { |
||
340 | $this->location = $location; |
||
341 | |||
342 | return $this; |
||
343 | } |
||
344 | |||
345 | /** |
||
346 | * Get location |
||
347 | * |
||
348 | * @return string |
||
349 | */ |
||
350 | public function getLocation() |
||
354 | |||
355 | /** |
||
356 | * Set shipTypeId |
||
357 | * |
||
358 | * @param integer $shipTypeId |
||
359 | * @return CorpMemberTracking |
||
360 | */ |
||
361 | public function setShipTypeId($shipTypeId) |
||
362 | { |
||
363 | $this->shipTypeId = $shipTypeId; |
||
364 | |||
365 | return $this; |
||
366 | } |
||
367 | |||
368 | /** |
||
369 | * Get shipTypeId |
||
370 | * |
||
371 | * @return integer |
||
372 | */ |
||
373 | public function getShipTypeId() |
||
377 | |||
378 | /** |
||
379 | * Set shipType |
||
380 | * |
||
381 | * @param string $shipType |
||
382 | * @return CorpMemberTracking |
||
383 | */ |
||
384 | public function setShipType($shipType) |
||
385 | { |
||
386 | $this->shipType = $shipType; |
||
387 | |||
388 | return $this; |
||
389 | } |
||
390 | |||
391 | /** |
||
392 | * Get shipType |
||
393 | * |
||
394 | * @return string |
||
395 | */ |
||
396 | public function getShipType() |
||
400 | |||
401 | /** |
||
402 | * Set roles |
||
403 | * |
||
404 | * @param integer $roles |
||
405 | * @return CorpMemberTracking |
||
406 | */ |
||
407 | public function setRoles($roles) |
||
408 | { |
||
409 | $this->roles = $roles; |
||
410 | |||
411 | return $this; |
||
412 | } |
||
413 | |||
414 | /** |
||
415 | * Get roles |
||
416 | * |
||
417 | * @return integer |
||
418 | */ |
||
419 | public function getRoles() |
||
423 | |||
424 | /** |
||
425 | * Set grantableRoles |
||
426 | * |
||
427 | * @param integer $grantableRoles |
||
428 | * @return CorpMemberTracking |
||
429 | */ |
||
430 | public function setGrantableRoles($grantableRoles) |
||
431 | { |
||
432 | $this->grantableRoles = $grantableRoles; |
||
433 | |||
434 | return $this; |
||
435 | } |
||
436 | |||
437 | /** |
||
438 | * Get grantableRoles |
||
439 | * |
||
440 | * @return integer |
||
441 | */ |
||
442 | public function getGrantableRoles() |
||
446 | } |
||
447 |