src/Entity/ServiceProduct.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ServiceProductRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * @ORM\Entity(repositoryClass=ServiceProductRepository::class)
  7. */
  8. class ServiceProduct
  9. {
  10. /**
  11. * @ORM\Id
  12. * @ORM\GeneratedValue
  13. * @ORM\Column(type="integer")
  14. */
  15. private $id;
  16. /**
  17. * @ORM\Column(type="string", length=255)
  18. */
  19. private $title;
  20. /**
  21. * @ORM\Column(type="text", nullable=true)
  22. */
  23. private $timeLength;
  24. /**
  25. * @ORM\Column(type="integer", options={"default": 0})
  26. */
  27. private $value = 0;
  28. /**
  29. * @ORM\Column(type="text", nullable=true)
  30. */
  31. private $content;
  32. /**
  33. * @ORM\Column(type="text", nullable=true)
  34. */
  35. private $image;
  36. public function getId(): ?int
  37. {
  38. return $this->id;
  39. }
  40. public function getTitle(): ?string
  41. {
  42. return $this->title;
  43. }
  44. public function setTitle( string $title ): self
  45. {
  46. $this->title = $title;
  47. return $this;
  48. }
  49. public function getTimeLength(): ?string
  50. {
  51. return $this->timeLength;
  52. }
  53. public function setTimeLength( ?string $timeLength ): self
  54. {
  55. $this->timeLength = $timeLength;
  56. return $this;
  57. }
  58. public function getValue(): ?int
  59. {
  60. return $this->value;
  61. }
  62. public function setValue( int $value ): self
  63. {
  64. $this->value = $value;
  65. return $this;
  66. }
  67. public function getContent(): ?string
  68. {
  69. return $this->content;
  70. }
  71. public function setContent( ?string $content ): self
  72. {
  73. $this->content = $content;
  74. return $this;
  75. }
  76. public function getImage(): ?string
  77. {
  78. return $this->image;
  79. }
  80. public function setImage( ?string $image ): self
  81. {
  82. $this->image = $image;
  83. return $this;
  84. }
  85. }