Product.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. * @ORM\Entity(repositoryClass="App\Repository\ProductRepository")
  6. *
  7. * Warning: Be careful not to use reserved SQL keywords as your table or column
  8. * names (e.g. GROUP or USER), Or, configure the table name with the
  9. * ORM\Table(name="groups") annotation above the class or configure the column
  10. * name with the name="group_name" option.
  11. *
  12. * Notice: no setId() method. Doctrine sets the ID automatically.
  13. */
  14. class Product
  15. {
  16. /**
  17. * The ManyToOne annotation is required to build the relation.
  18. *
  19. * @ORM\ManyToOne(
  20. * targetEntity = "App\Entity\Category",
  21. * inversedBy = "products"
  22. * )
  23. * @ORM\JoinColumn(
  24. * nullable = true
  25. * )
  26. */
  27. private $category;
  28. /**
  29. * @ORM\Column(type="text"))
  30. */
  31. private $description;
  32. /**
  33. * @ORM\Id
  34. * @ORM\GeneratedValue
  35. * @ORM\Column(type="integer")
  36. */
  37. private $id;
  38. /**
  39. * @ORM\Column(type="string", length=100))
  40. */
  41. private $name;
  42. /**
  43. * @ORM\Column(type="decimal", scale=2, nullable=true)
  44. */
  45. private $price;
  46. /**
  47. * @return \App\Entity\Category
  48. */
  49. public function getCategory(): Category {
  50. return $this->category;
  51. }
  52. /**
  53. * @return string
  54. */
  55. public function getDescription(): string {
  56. return $this->description;
  57. }
  58. /**
  59. * @return int
  60. */
  61. public function getId(): int {
  62. return $this->id;
  63. }
  64. /**
  65. * @return string
  66. */
  67. public function getName(): string {
  68. return $this->name;
  69. }
  70. /**
  71. * @return float
  72. */
  73. public function getPrice(): float {
  74. return $this->price;
  75. }
  76. /**
  77. * @param \App\Entity\Category $category
  78. *
  79. * @return \App\Entity\Product
  80. */
  81. public function setCategory(Category $category): self {
  82. $this->category = $category;
  83. return $this;
  84. }
  85. /**
  86. * @param string $description
  87. *
  88. * @return \App\Entity\Product
  89. */
  90. public function setDescription(string $description): self {
  91. $this->description = $description;
  92. return $this;
  93. }
  94. /**
  95. * @param string $name
  96. *
  97. * @return \App\Entity\Product
  98. */
  99. public function setName(string $name): self {
  100. $this->name = $name;
  101. return $this;
  102. }
  103. /**
  104. * @param float $price
  105. *
  106. * @return \App\Entity\Product
  107. */
  108. public function setPrice(float $price): self {
  109. $this->price = $price;
  110. return $this;
  111. }
  112. }