Guest User

Untitled

a guest
Dec 13th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <?php
  2. namespace Acme\ParqueBundle\Entity;
  3.  
  4. use Doctrine\ORM\Mapping as ORM;
  5.  
  6. /**
  7. * @ORM\Entity
  8. * @ORM\Table(name="individuo")
  9. */
  10. class Individuo
  11. {
  12. /**
  13. * @ORM\Id
  14. * @ORM\Column(type="integer")
  15. * @ORM\GeneratedValue(strategy="AUTO")
  16. */
  17. protected $id;
  18.  
  19. /**
  20. * @ORM\Column(type="string", length=100)
  21. */
  22. protected $especie;
  23.  
  24. /**
  25. * @ORM\Column(type="string", length=100)
  26. */
  27. protected $plantacion;
  28.  
  29. /**
  30. * @ORM\Column(type="double")
  31. */
  32. protected $coordx;
  33. /**
  34. * @ORM\Column(type="double")
  35. */
  36. protected $coordy;
  37.  
  38.  
  39. }
Add Comment
Please, Sign In to add comment