<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;use Gedmo\Mapping\Annotation as Gedmo;/** * @ORM\Entity(repositoryClass="App\Repository\PlantillaCorreoRepository") * @ORM\Table(name="plantilla_correo", schema="perseo") * @Gedmo\SoftDeleteable(fieldName="deletedAt", timeAware=false, hardDelete=true) */class PlantillaCorreo extends PlantillaAbstract{}