correccion modelos

parent 48b5bc7f
......@@ -11,6 +11,7 @@ class McafeeTransaccion extends BaseMcafeeTransaccion
const TIPO_CANCELAR_SUS= 3;
const TIPO_ACTUALIZA_PERF= 4;
const TIPO_DESCONTAR_LICS= 5;
const TIPO_USUARIO_NUEVO_LICENCIA_MOVISTAR = 6;
const ESTADO_NO_ENVIADA=0;
const ESTADO_SUCCESS=1;
......
......@@ -13,6 +13,7 @@ class McafeeTransaccionPendiente extends BaseMcafeeTransaccionPendiente
const TIPO_CANCELAR_SUS= 3;
const TIPO_ACTUALIZA_PERF= 4;
const TIPO_DESCONTAR_LICS= 5;
const TIPO_USUARIO_NUEVO_LICENCIA_MOVISTAR = 6;
const ESTADO_PENDIENTE=0;//Transaccion pendiente que buscara la tarea.
const ESTADO_DESECHADA=1;//Transaccion que despues de ciertos intentos se desecho.
......
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseUsuariosMcafeeMovistarNuevos;
class UsuariosMcafeeMovistarNuevos extends BaseUsuariosMcafeeMovistarNuevos
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseUsuariosMcafeeMovistarNuevosPeer;
class UsuariosMcafeeMovistarNuevosPeer extends BaseUsuariosMcafeeMovistarNuevosPeer
{
}
<?php
namespace AppBundle\Model;
use AppBundle\Model\om\BaseUsuariosMcafeeMovistarNuevosQuery;
class UsuariosMcafeeMovistarNuevosQuery extends BaseUsuariosMcafeeMovistarNuevosQuery
{
}
<?php
namespace AppBundle\Model\map;
use \RelationMap;
use \TableMap;
/**
* This class defines the structure of the 'usuarios_mcafee_movistar_nuevos' table.
*
*
*
* This map class is used by Propel to do runtime db structure discovery.
* For example, the createSelectSql() method checks the type of a given column used in an
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type).
*
* @package propel.generator.src.AppBundle.Model.map
*/
class UsuariosMcafeeMovistarNuevosTableMap extends TableMap
{
/**
* The (dot-path) name of this class
*/
const CLASS_NAME = 'src.AppBundle.Model.map.UsuariosMcafeeMovistarNuevosTableMap';
/**
* Initialize the table attributes, columns and validators
* Relations are not initialized by this method since they are lazy loaded
*
* @return void
* @throws PropelException
*/
public function initialize()
{
// attributes
$this->setName('usuarios_mcafee_movistar_nuevos');
$this->setPhpName('UsuariosMcafeeMovistarNuevos');
$this->setClassname('AppBundle\\Model\\UsuariosMcafeeMovistarNuevos');
$this->setPackage('src.AppBundle.Model');
$this->setUseIdGenerator(true);
// columns
$this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null);
$this->addColumn('id_mov', 'IdMov', 'INTEGER', true, null, 0);
$this->addColumn('area_tel', 'AreaTel', 'INTEGER', false, null, null);
$this->addColumn('rut', 'Rut', 'INTEGER', false, null, null);
$this->addColumn('nombres', 'Nombres', 'VARCHAR', false, 45, null);
$this->addColumn('correo', 'Correo', 'VARCHAR', false, 64, null);
$this->addColumn('fono_contacto_fijo_1', 'FonoContactoFijo1', 'INTEGER', false, null, null);
$this->addColumn('fono_contacto_fijo_2', 'FonoContactoFijo2', 'INTEGER', false, null, null);
$this->addColumn('fono_contacto_movil_1', 'FonoContactoMovil1', 'INTEGER', false, null, null);
$this->addColumn('fono_contacto_movil_2', 'FonoContactoMovil2', 'INTEGER', false, null, null);
$this->addColumn('ps_6094', 'Ps6094', 'INTEGER', false, null, null);
$this->addColumn('ps_5679', 'Ps5679', 'INTEGER', false, null, null);
$this->addColumn('ps_2989', 'Ps2989', 'INTEGER', false, null, null);
$this->addColumn('ps_6753', 'Ps6753', 'INTEGER', false, null, null);
$this->addColumn('ps_6759', 'Ps6759', 'INTEGER', false, null, null);
// validators
} // initialize()
/**
* Build the RelationMap objects for this table relationships
*/
public function buildRelations()
{
} // buildRelations()
} // UsuariosMcafeeMovistarNuevosTableMap
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment