TutoresAscenso.php
6.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
<?php
/**
* Creado por:
* User: Wilmer Ramones
* Date: 16/01/17
* Time: 08:25 AM
*/
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Tutores Ascenso
*
* @ORM\Table(name="tutores_ascenso", uniqueConstraints={@ORM\UniqueConstraint(name="uq_cedula", columns={"cedula_pasaporte"})})
* @ORM\Entity
*/
class TutoresAscenso
{
/**
* @var \AppBundle\Entity\DocumentoIdentidad
*
* @ORM\ManyToOne(targetEntity="AppBundle\Entity\DocumentoIdentidad")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="id_documento_identidad", referencedColumnName="id", nullable=false)
* })
*/
private $idDocumentoIdentidad;
/**
* @var \AppBundle\Entity\Estado
*
* @ORM\ManyToOne(targetEntity="AppBundle\Entity\Estado")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="id_estado", referencedColumnName="id", nullable=false)
* })
*/
private $idEstado;
/**
* @var string
*
* @ORM\Column(name="cedula_pasaporte", type="string", length=15, nullable=false, options={"comment" = "Numero de cedula o pasaporte de la persona"})
*/
private $cedulaPasaporte;
/**
* @var string
*
* @ORM\Column(name="correo_electronico", type="string", length=80, nullable=true, options={"comment" = "nombre de correo electronico de la apersona"})
*/
private $correoElectronico;
/**
* @var string
*
* @ORM\Column(name="nombres", type="string", length=255, nullable=false, options={"comment" = "Nombres del Tutor"})
*/
private $nombres;
/**
* @var string
*
* @ORM\Column(name="apellidos", type="string", length=255, nullable=false, options={"comment" = "Apellidos del Tutor"})
*/
private $apellidos;
/**
* @var string
*
* @ORM\Column(name="institucion", type="string", length=255, nullable=true, options={"comment" = "Instituto educativo de donde viene es el tutor"})
*/
private $institucion;
/**
* @var integer
*
* @ORM\Column(name="id", type="integer", nullable=false, options={"comment" = "Identificador del tutor"})
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
* @ORM\SequenceGenerator(sequenceName="genero_id_seq", allocationSize=1, initialValue=1)
*/
private $id;
/**
* @var \AppBundle\Entity\Escalafones
*
* @ORM\ManyToOne(targetEntity="AppBundle\Entity\Escalafones")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="id_escala", referencedColumnName="id", nullable=false)
* })
*/
protected $idEscala;
/**
*
* @return string
*/
public function __toString()
{
return $this->nombres . " " . $this->apellidos;
}
/**
* Set cedulaPasaporte
*
* @param string $cedulaPasaporte
* @return TutoresAscenso
*/
public function setCedulaPasaporte($cedulaPasaporte)
{
$this->cedulaPasaporte = $cedulaPasaporte;
return $this;
}
/**
* Get cedulaPasaporte
*
* @return string
*/
public function getCedulaPasaporte()
{
return $this->cedulaPasaporte;
}
/**
* Set correoElectronico
*
* @param string $correoElectronico
* @return TutoresAscenso
*/
public function setCorreoElectronico($correoElectronico)
{
$this->correoElectronico = $correoElectronico;
return $this;
}
/**
* Get correoElectronico
*
* @return string
*/
public function getCorreoElectronico()
{
return $this->correoElectronico;
}
/**
* Set nombres
*
* @param string $nombres
* @return TutoresAscenso
*/
public function setNombres($nombres)
{
$this->nombres = $nombres;
return $this;
}
/**
* Get nombres
*
* @return string
*/
public function getNombres()
{
return $this->nombres;
}
/**
* Set apellidos
*
* @param string $apellidos
* @return TutoresAscenso
*/
public function setApellidos($apellidos)
{
$this->apellidos = $apellidos;
return $this;
}
/**
* Get apellidos
*
* @return string
*/
public function getApellidos()
{
return $this->apellidos;
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set idDocumentoentidad
*
* @param \AppBundle\Entity\DocumentoIdentidad $idDocumentoIdentidad
* @return TutoresAscenso
*/
public function setIdDocumentoIdentidad(\AppBundle\Entity\DocumentoIdentidad $idDocumentoIdentidad)
{
$this->idDocumentoIdentidad = $idDocumentoIdentidad;
return $this;
}
/**
* Get idDocumentoentidad
*
* @return \AppBundle\Entity\DocumentoIdentidad
*/
public function getIdDocumentoIdentidad()
{
return $this->idDocumentoIdentidad;
}
/**
* Set idEscala
*
* @param \AppBundle\Entity\Escalafones $idEscala
* @return TutoresAscenso
*/
public function setIdEscala(\AppBundle\Entity\Escalafones $idEscala)
{
$this->idEscala = $idEscala;
return $this;
}
/**
* Get idEscala
*
* @return \AppBundle\Entity\Escalafones
*/
public function getIdEscala()
{
return $this->idEscala;
}
/**
* Set institucion
*
* @param string $institucion
* @return TutoresAscenso
*/
public function setInstitucion($institucion)
{
$this->institucion = $institucion;
return $this;
}
/**
* Get institucion
*
* @return string
*/
public function getInstitucion()
{
return $this->institucion;
}
/**
* Set idEstado
*
* @param \AppBundle\Entity\Estado $idEstado
* @return TutoresAscenso
*/
public function setIdEstado(\AppBundle\Entity\Estado $idEstado)
{
$this->idEstado = $idEstado;
return $this;
}
/**
* Get idEstado
*
* @return \AppBundle\Entity\Estado
*/
public function getIdEstado()
{
return $this->idEstado;
}
}