| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?php
- namespace AppBundle\Entity\Core;
- use Doctrine\ORM\Mapping as ORM;
- use Dunglas\ApiBundle\Annotation\Iri;
- use Symfony\Component\Serializer\Annotation\Groups;
- use Symfony\Component\Validator\Constraints as Assert;
- /**
- * Region d'un pays
- * (Ex: Alsace in France).
- *
- * @Iri("http://schema.org/Region")
- */
- #[ORM\Entity]
- class Region
- {
- /**
- * @var int
- */
- #[ORM\Column(type: 'integer')]
- #[ORM\Id]
- #[ORM\GeneratedValue(strategy: 'AUTO')]
- #[Groups(['region'])]
- private $id;
- /**
- * @var string
- */
- #[ORM\Column(type: 'string', nullable: true)]
- #[Assert\Type(type: 'string')]
- #[Groups(['region'])]
- private $name;
- /**
- * @var Country
- */
- #[ORM\ManyToOne(targetEntity: 'Country')]
- #[ORM\JoinColumn(nullable: false)]
- #[Groups(['region'])]
- private $country;
- /**
- * Sets id.
- *
- * @param int $id
- *
- * @return $this
- */
- public function setId($id)
- {
- $this->id = $id;
- return $this;
- }
- /**
- * Gets id.
- *
- * @return int
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Sets name.
- *
- * @param string $name
- *
- * @return $this
- */
- public function setName($name)
- {
- $this->name = $name;
- return $this;
- }
- /**
- * Gets name.
- *
- * @return string
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * Sets country.
- *
- * @param Country $country
- *
- * @return $this
- */
- public function setCountry(Country $country = null)
- {
- $this->country = $country;
- return $this;
- }
- /**
- * Gets country.
- *
- * @return Country
- */
- public function getCountry()
- {
- return $this->country;
- }
- }
|