@@ -19,11 +19,13 @@ use AppBundle\Model\NotificaQuery;
...
@@ -19,11 +19,13 @@ use AppBundle\Model\NotificaQuery;
* @method NotificaQuery orderByCampana($order = Criteria::ASC) Order by the campana column
* @method NotificaQuery orderByCampana($order = Criteria::ASC) Order by the campana column
* @method NotificaQuery orderByTelefono($order = Criteria::ASC) Order by the telefono column
* @method NotificaQuery orderByTelefono($order = Criteria::ASC) Order by the telefono column
* @method NotificaQuery orderByEstado($order = Criteria::ASC) Order by the estado column
* @method NotificaQuery orderByEstado($order = Criteria::ASC) Order by the estado column
* @method NotificaQuery orderByIdmetodo($order = Criteria::ASC) Order by the idmetodo column
*
*
* @method NotificaQuery groupById() Group by the id column
* @method NotificaQuery groupById() Group by the id column
* @method NotificaQuery groupByCampana() Group by the campana column
* @method NotificaQuery groupByCampana() Group by the campana column
* @method NotificaQuery groupByTelefono() Group by the telefono column
* @method NotificaQuery groupByTelefono() Group by the telefono column
* @method NotificaQuery groupByEstado() Group by the estado column
* @method NotificaQuery groupByEstado() Group by the estado column
* @method NotificaQuery groupByIdmetodo() Group by the idmetodo column
*
*
* @method NotificaQuery leftJoin($relation) Adds a LEFT JOIN clause to the query
* @method NotificaQuery leftJoin($relation) Adds a LEFT JOIN clause to the query
* @method NotificaQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
* @method NotificaQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
...
@@ -32,14 +34,16 @@ use AppBundle\Model\NotificaQuery;
...
@@ -32,14 +34,16 @@ use AppBundle\Model\NotificaQuery;
* @method Notifica findOne(PropelPDO $con = null) Return the first Notifica matching the query
* @method Notifica findOne(PropelPDO $con = null) Return the first Notifica matching the query
* @method Notifica findOneOrCreate(PropelPDO $con = null) Return the first Notifica matching the query, or a new Notifica object populated from the query conditions when no match is found
* @method Notifica findOneOrCreate(PropelPDO $con = null) Return the first Notifica matching the query, or a new Notifica object populated from the query conditions when no match is found
*
*
* @method Notifica findOneByCampana(int $campana) Return the first Notifica filtered by the campana column
* @method Notifica findOneByCampana(string $campana) Return the first Notifica filtered by the campana column
* @method Notifica findOneByTelefono(string $telefono) Return the first Notifica filtered by the telefono column
* @method Notifica findOneByTelefono(string $telefono) Return the first Notifica filtered by the telefono column
* @method Notifica findOneByEstado(int $estado) Return the first Notifica filtered by the estado column
* @method Notifica findOneByEstado(string $estado) Return the first Notifica filtered by the estado column
* @method Notifica findOneByIdmetodo(int $idmetodo) Return the first Notifica filtered by the idmetodo column
*
*
* @method array findById(int $id) Return Notifica objects filtered by the id column
* @method array findById(int $id) Return Notifica objects filtered by the id column
* @method array findByCampana(int $campana) Return Notifica objects filtered by the campana column
* @method array findByCampana(string $campana) Return Notifica objects filtered by the campana column
* @method array findByTelefono(string $telefono) Return Notifica objects filtered by the telefono column
* @method array findByTelefono(string $telefono) Return Notifica objects filtered by the telefono column
* @method array findByEstado(int $estado) Return Notifica objects filtered by the estado column
* @method array findByEstado(string $estado) Return Notifica objects filtered by the estado column
* @method array findByIdmetodo(int $idmetodo) Return Notifica objects filtered by the idmetodo column