PlanificacionSeccionContenido.php~
1.77 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
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* PlanificacionSeccionContenido
*
* @ORM\Table(name="planificacion_seccion_contenido",
* uniqueConstraints=
* {@ORM\UniqueConstraint(name="uq_planificacion_seccion_contenido",
* columns={"id_planificacion_seccion"})
* },
* indexes={
* @ORM\Index(name="fki_id_planificacion_seccion",
* columns={"id_planificacion_seccion"})
* }
* )
* @ORM\Entity
*/
class PlanificacionSeccionContenido
{
/**
* @var text
*
* @ORM\Column(name="conceptual", type="text", nullable=false, options={"comment" = "Contenido Conceptual"})
*/
private $conceptual;
/**
* @var text
*
* @ORM\Column(name="procedimental", type="text", nullable=false, options={"comment" = "Contenido Procedimental"})
*/
private $procedimental;
/**
* @var text
*
* @ORM\Column(name="actitudinal", type="text", nullable=false, options={"comment" = "Contenido actitudinal"})
*/
private $actitudinal;
/**
* @var integer
*
* @ORM\Column(name="id", type="integer", nullable=false, options={"comment" = "Identificador del municipio"})
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
* @ORM\SequenceGenerator(sequenceName="municipio_id_seq", allocationSize=1, initialValue=1)
*/
private $id;
/**
* @var \AppBundle\Entity\PlanificacionSeccion
*
* @ORM\ManyToOne(targetEntity="AppBundle\Entity\PlanificacionSeccion")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="id_planificacion_seccion", referencedColumnName="id", nullable=false)
* })
*/
private $idPlanificacionSeccion;
}