src/OfficeBrain/Bundle/ProductBundle/Entity/SyncAsi.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\OfficeBrain\Bundle\ProductBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * SyncAsi
  6.  *
  7.  * @ORM\Table("tbl_syncasi")
  8.  * @ORM\Entity(repositoryClass="App\OfficeBrain\Bundle\ProductBundle\Repository\SyncAsiRepository")
  9.  */
  10. class SyncAsi
  11. {
  12.     /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="sku", type="string", length=255)
  24.      */
  25.     private $sku;
  26.     /**
  27.      * @var boolean
  28.      *
  29.      * @ORM\Column(name="is_sync", type="integer")
  30.      */
  31.     private $isSync;
  32.     /**
  33.      * Get id
  34.      *
  35.      * @return integer
  36.      */
  37.     public function getId()
  38.     {
  39.         return $this->id;
  40.     }
  41.     /**
  42.      * Set sku
  43.      *
  44.      * @param string $sku
  45.      *
  46.      * @return SyncAsi
  47.      */
  48.     public function setSku($sku)
  49.     {
  50.         $this->sku $sku;
  51.         return $this;
  52.     }
  53.     /**
  54.      * Get sku
  55.      *
  56.      * @return string
  57.      */
  58.     public function getSku()
  59.     {
  60.         return $this->sku;
  61.     }
  62.     /**
  63.      * Set isSync
  64.      *
  65.      * @param integer $isSync
  66.      *
  67.      * @return SyncAsi
  68.      */
  69.     public function setIsSync($isSync)
  70.     {
  71.         $this->isSync $isSync;
  72.         return $this;
  73.     }
  74.     /**
  75.      * Get isSync
  76.      *
  77.      * @return integer
  78.      */
  79.     public function getIsSync()
  80.     {
  81.         return $this->isSync;
  82.     }
  83. }