Class is not a valid entity or mapped super class. En Zend Framework 3 y Doctrine 2

Este mensaje me sale cuando quiero usar mi entity en zend framework 3 y doctrine.

Class "Application\Entity\BEvaluation" is not a valid entity or mapped super class.
Solo hay que agregar @ORM\Entity() a las annotations:

 


/**
 * Application\Entity\BEvaluation
 *
 * @ORM\Entity()
 * @ORM\Table(name="bevaluation")
 */