app/Plugin/ProductReview42/Entity/ProductReview.php line 28

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Plugin\ProductReview42\Entity;
  13. use Doctrine\ORM\Mapping as ORM;
  14. use Eccube\Entity\AbstractEntity;
  15. use Eccube\Entity\Customer;
  16. use Eccube\Entity\Master\Sex;
  17. use Eccube\Entity\Product;
  18. /**
  19.  * ProductReview
  20.  *
  21.  * @ORM\Table(name="plg_product_review")
  22.  * @ORM\Entity(repositoryClass="Plugin\ProductReview42\Repository\ProductReviewRepository")
  23.  */
  24. class ProductReview extends AbstractEntity
  25. {
  26.     /**
  27.      * @var int
  28.      *
  29.      * @ORM\Column(name="id", type="integer", options={"unsigned":true})
  30.      * @ORM\Id
  31.      * @ORM\GeneratedValue(strategy="IDENTITY")
  32.      */
  33.     private $id;
  34.     /**
  35.      * @var string
  36.      *
  37.      * @ORM\Column(name="reviewer_name", type="string")
  38.      */
  39.     private $reviewer_name;
  40.     /**
  41.      * @var string
  42.      *
  43.      * @ORM\Column(name="reviewer_url", type="text", nullable=true)
  44.      */
  45.     private $reviewer_url;
  46.     /**
  47.      * @var string
  48.      *
  49.      * @ORM\Column(name="title", type="string", length=50)
  50.      */
  51.     private $title;
  52.     /**
  53.      * @var string
  54.      *
  55.      * @ORM\Column(name="comment", type="text")
  56.      */
  57.     private $comment;
  58.     /**
  59.      * @var Sex
  60.      *
  61.      * @ORM\ManyToOne(targetEntity="Eccube\Entity\Master\Sex")
  62.      * @ORM\JoinColumns({
  63.      *   @ORM\JoinColumn(name="sex_id", referencedColumnName="id")
  64.      * })
  65.      */
  66.     private $Sex;
  67.     /**
  68.      * @var int
  69.      *
  70.      * @ORM\Column(name="recommend_level", type="smallint")
  71.      */
  72.     private $recommend_level;
  73.     /**
  74.      * @var Product
  75.      *
  76.      * @ORM\ManyToOne(targetEntity="Eccube\Entity\Product")
  77.      * @ORM\JoinColumns({
  78.      *   @ORM\JoinColumn(name="product_id", referencedColumnName="id")
  79.      * })
  80.      */
  81.     private $Product;
  82.     /**
  83.      * @var Customer
  84.      *
  85.      * @ORM\ManyToOne(targetEntity="Eccube\Entity\Customer")
  86.      * @ORM\JoinColumns({
  87.      *   @ORM\JoinColumn(name="customer_id", referencedColumnName="id")
  88.      * })
  89.      */
  90.     private $Customer;
  91.     /**
  92.      * @var \DateTime
  93.      *
  94.      * @ORM\Column(name="create_date", type="datetimetz")
  95.      */
  96.     private $create_date;
  97.     /**
  98.      * @var \DateTime
  99.      *
  100.      * @ORM\Column(name="update_date", type="datetimetz")
  101.      */
  102.     private $update_date;
  103.     /**
  104.      * @var \Plugin\ProductReview42\Entity\ProductReviewStatus
  105.      *
  106.      * @ORM\ManyToOne(targetEntity="Plugin\ProductReview42\Entity\ProductReviewStatus")
  107.      * @ORM\JoinColumns({
  108.      *   @ORM\JoinColumn(name="status_id", referencedColumnName="id")
  109.      * })
  110.      */
  111.     private $Status;
  112.     /**
  113.      * Get id.
  114.      *
  115.      * @return int
  116.      */
  117.     public function getId()
  118.     {
  119.         return $this->id;
  120.     }
  121.     /**
  122.      * Get reviewer_name.
  123.      *
  124.      * @return string
  125.      */
  126.     public function getReviewerName()
  127.     {
  128.         return $this->reviewer_name;
  129.     }
  130.     /**
  131.      * Set reviewer_name.
  132.      *
  133.      * @param string $reviewer_name
  134.      *
  135.      * @return ProductReview
  136.      */
  137.     public function setReviewerName($reviewer_name)
  138.     {
  139.         $this->reviewer_name $reviewer_name;
  140.         return $this;
  141.     }
  142.     /**
  143.      * Get reviewer_url.
  144.      *
  145.      * @return string
  146.      */
  147.     public function getReviewerUrl()
  148.     {
  149.         return $this->reviewer_url;
  150.     }
  151.     /**
  152.      * Set reviewer_url.
  153.      *
  154.      * @param string $reviewer_url
  155.      *
  156.      * @return ProductReview
  157.      */
  158.     public function setReviewerUrl($reviewer_url)
  159.     {
  160.         $this->reviewer_url $reviewer_url;
  161.         return $this;
  162.     }
  163.     /**
  164.      * Get recommend_level.
  165.      *
  166.      * @return int
  167.      */
  168.     public function getRecommendLevel()
  169.     {
  170.         return $this->recommend_level;
  171.     }
  172.     /**
  173.      * Set recommend_level.
  174.      *
  175.      * @param int $recommend_level
  176.      *
  177.      * @return ProductReview
  178.      */
  179.     public function setRecommendLevel($recommend_level)
  180.     {
  181.         $this->recommend_level $recommend_level;
  182.         return $this;
  183.     }
  184.     /**
  185.      * Set Sex.
  186.      *
  187.      * @param Sex $Sex
  188.      *
  189.      * @return ProductReview
  190.      */
  191.     public function setSex(Sex $Sex null)
  192.     {
  193.         $this->Sex $Sex;
  194.         return $this;
  195.     }
  196.     /**
  197.      * Get Sex.
  198.      *
  199.      * @return Sex
  200.      */
  201.     public function getSex()
  202.     {
  203.         return $this->Sex;
  204.     }
  205.     /**
  206.      * Get title.
  207.      *
  208.      * @return string
  209.      */
  210.     public function getTitle()
  211.     {
  212.         return $this->title;
  213.     }
  214.     /**
  215.      * Set title.
  216.      *
  217.      * @param string $title
  218.      *
  219.      * @return ProductReview
  220.      */
  221.     public function setTitle($title)
  222.     {
  223.         $this->title $title;
  224.         return $this;
  225.     }
  226.     /**
  227.      * Get comment.
  228.      *
  229.      * @return string
  230.      */
  231.     public function getComment()
  232.     {
  233.         return $this->comment;
  234.     }
  235.     /**
  236.      * Set comment.
  237.      *
  238.      * @param string $comment
  239.      *
  240.      * @return ProductReview
  241.      */
  242.     public function setComment($comment)
  243.     {
  244.         $this->comment $comment;
  245.         return $this;
  246.     }
  247.     /**
  248.      * Set Product.
  249.      *
  250.      * @param Product $Product
  251.      *
  252.      * @return $this
  253.      */
  254.     public function setProduct(Product $Product)
  255.     {
  256.         $this->Product $Product;
  257.         return $this;
  258.     }
  259.     /**
  260.      * Get Product.
  261.      *
  262.      * @return Product
  263.      */
  264.     public function getProduct()
  265.     {
  266.         return $this->Product;
  267.     }
  268.     /**
  269.      * Set Customer.
  270.      *
  271.      * @param Customer $Customer
  272.      *
  273.      * @return $this
  274.      */
  275.     public function setCustomer(Customer $Customer)
  276.     {
  277.         $this->Customer $Customer;
  278.         return $this;
  279.     }
  280.     /**
  281.      * Get Customer.
  282.      *
  283.      * @return Customer
  284.      */
  285.     public function getCustomer()
  286.     {
  287.         return $this->Customer;
  288.     }
  289.     /**
  290.      * @return \Plugin\ProductReview42\Entity\ProductReviewStatus
  291.      */
  292.     public function getStatus()
  293.     {
  294.         return $this->Status;
  295.     }
  296.     /**
  297.      * @param \Plugin\ProductReview42\Entity\ProductReviewStatus $status
  298.      */
  299.     public function setStatus(\Plugin\ProductReview42\Entity\ProductReviewStatus $Status)
  300.     {
  301.         $this->Status $Status;
  302.     }
  303.     /**
  304.      * Set create_date.
  305.      *
  306.      * @param \DateTime $createDate
  307.      *
  308.      * @return $this
  309.      */
  310.     public function setCreateDate($createDate)
  311.     {
  312.         $this->create_date $createDate;
  313.         return $this;
  314.     }
  315.     /**
  316.      * Get create_date.
  317.      *
  318.      * @return \DateTime
  319.      */
  320.     public function getCreateDate()
  321.     {
  322.         return $this->create_date;
  323.     }
  324.     /**
  325.      * Set update_date.
  326.      *
  327.      * @param \DateTime $updateDate
  328.      *
  329.      * @return $this
  330.      */
  331.     public function setUpdateDate($updateDate)
  332.     {
  333.         $this->update_date $updateDate;
  334.         return $this;
  335.     }
  336.     /**
  337.      * Get update_date.
  338.      *
  339.      * @return \DateTime
  340.      */
  341.     public function getUpdateDate()
  342.     {
  343.         return $this->update_date;
  344.     }
  345. }