<?php
/**
* Provenances.php
* Created by Sunendra Gajadhar
* Date: 2024-02-05 at 09:02
*/
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="tprovenances")
* @ORM\Entity(repositoryClass="App\Repository\ProvenancesRepository")
*/
class Provenances
{
/**
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\Column(name="description", type="string", length=255)
*/
protected $description;
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* @param $id
* @return mixed
*/
public function setId($id)
{
$this->id = $id;
}
/**
* @return mixed
*/
public function getDescription()
{
return $this->description;
}
/**
* @param mixed $description
*/
public function setDescription($description)
{
$this->description = $description;
}
}