src/Entity/ProductVariation.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProductVariationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ProductVariationRepository::class)
  7.  */
  8. class ProductVariation
  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="string", length=255)
  22.      */
  23.     private $sku;
  24.     /**
  25.      * @ORM\Column(type="integer")
  26.      */
  27.     private $color;
  28.     /**
  29.      * @ORM\Column(type="integer")
  30.      */
  31.     private $size;
  32.     /**
  33.      * @ORM\Column(type="float")
  34.      */
  35.     private $actualPrice;
  36.     /**
  37.      * @ORM\Column(type="float")
  38.      */
  39.     private $price;
  40.     /**
  41.      * @ORM\Column(type="float")
  42.      */
  43.     private $tax;
  44.     /**
  45.      * @ORM\Column(type="float")
  46.      */
  47.     private $total;
  48.     /**
  49.      * @ORM\Column(type="datetime")
  50.      */
  51.     private $created;
  52.     /**
  53.      * @ORM\Column(type="datetime")
  54.      */
  55.     private $updated;
  56.     /**
  57.      * @ORM\Column(type="integer")
  58.      */
  59.     private $productId;
  60.     /**
  61.      * @ORM\Column(type="integer")
  62.      */
  63.     private $createdBy;
  64.     /**
  65.      * @ORM\Column(type="datetime")
  66.      */
  67.     private $access;
  68.     /**
  69.      * @ORM\Column(type="integer")
  70.      */
  71.     private $totalcount;
  72.     /**
  73.      * @ORM\Column(type="integer")
  74.      */
  75.     private $stock;
  76.     /**
  77.      * @ORM\Column(type="boolean")
  78.      */
  79.     private $status;
  80.     public function getId(): ?int
  81.     {
  82.         return $this->id;
  83.     }
  84.     public function getTitle(): ?string
  85.     {
  86.         return $this->title;
  87.     }
  88.     public function setTitle(string $title): self
  89.     {
  90.         $this->title $title;
  91.         return $this;
  92.     }
  93.     public function getSku(): ?string
  94.     {
  95.         return $this->sku;
  96.     }
  97.     public function setSku(string $sku): self
  98.     {
  99.         $this->sku $sku;
  100.         return $this;
  101.     }
  102.     public function getColor(): ?int
  103.     {
  104.         return $this->color;
  105.     }
  106.     public function setColor(int $color): self
  107.     {
  108.         $this->color $color;
  109.         return $this;
  110.     }
  111.     public function getSize(): ?int
  112.     {
  113.         return $this->size;
  114.     }
  115.     public function setSize(int $size): self
  116.     {
  117.         $this->size $size;
  118.         return $this;
  119.     }
  120.     public function getActualPrice(): ?float
  121.     {
  122.         return $this->actualPrice;
  123.     }
  124.     public function setActualPrice(float $actualPrice): self
  125.     {
  126.         $this->actualPrice $actualPrice;
  127.         return $this;
  128.     }
  129.     public function getPrice(): ?float
  130.     {
  131.         return $this->price;
  132.     }
  133.     public function setPrice(float $price): self
  134.     {
  135.         $this->price $price;
  136.         return $this;
  137.     }
  138.     public function getTax(): ?float
  139.     {
  140.         return $this->tax;
  141.     }
  142.     public function setTax(float $tax): self
  143.     {
  144.         $this->tax $tax;
  145.         return $this;
  146.     }
  147.     public function getTotal(): ?float
  148.     {
  149.         return $this->total;
  150.     }
  151.     public function setTotal(float $total): self
  152.     {
  153.         $this->total $total;
  154.         return $this;
  155.     }
  156.     public function getCreated(): ?\DateTimeInterface
  157.     {
  158.         return $this->created;
  159.     }
  160.     public function setCreated(\DateTimeInterface $created): self
  161.     {
  162.         $this->created $created;
  163.         return $this;
  164.     }
  165.     public function getUpdated(): ?\DateTimeInterface
  166.     {
  167.         return $this->updated;
  168.     }
  169.     public function setUpdated(\DateTimeInterface $updated): self
  170.     {
  171.         $this->updated $updated;
  172.         return $this;
  173.     }
  174.     public function getProductId(): ?int
  175.     {
  176.         return $this->productId;
  177.     }
  178.     public function setProductId(int $productId): self
  179.     {
  180.         $this->productId $productId;
  181.         return $this;
  182.     }
  183.     public function getCreatedBy(): ?int
  184.     {
  185.         return $this->createdBy;
  186.     }
  187.     public function setCreatedBy(int $createdBy): self
  188.     {
  189.         $this->createdBy $createdBy;
  190.         return $this;
  191.     }
  192.     public function getAccess(): ?\DateTimeInterface
  193.     {
  194.         return $this->access;
  195.     }
  196.     public function setAccess(\DateTimeInterface $access): self
  197.     {
  198.         $this->access $access;
  199.         return $this;
  200.     }
  201.     public function getTotalcount(): ?int
  202.     {
  203.         return $this->totalcount;
  204.     }
  205.     public function setTotalcount(int $totalcount): self
  206.     {
  207.         $this->totalcount $totalcount;
  208.         return $this;
  209.     }
  210.     public function getStock(): ?int
  211.     {
  212.         return $this->stock;
  213.     }
  214.     public function setStock(int $stock): self
  215.     {
  216.         $this->stock $stock;
  217.         return $this;
  218.     }
  219.     public function getStatus(): ?bool
  220.     {
  221.         return $this->status;
  222.     }
  223.     public function setStatus(bool $status): self
  224.     {
  225.         $this->status $status;
  226.         return $this;
  227.     }
  228. }