src/Entity/PlantillaCorreo.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Mapping\Annotation as Gedmo;
  5. /**
  6.  * @ORM\Entity(repositoryClass="App\Repository\PlantillaCorreoRepository")
  7.  * @ORM\Table(name="plantilla_correo", schema="perseo")
  8.  * @Gedmo\SoftDeleteable(fieldName="deletedAt", timeAware=false, hardDelete=true)
  9.  */
  10. class PlantillaCorreo extends PlantillaAbstract
  11. {
  12. }