59 lines
3.5 KiB
PHP
59 lines
3.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* BaseCommandesDetail
|
|
*
|
|
* This class has been auto-generated by the Doctrine ORM Framework
|
|
*
|
|
* @property integer $id
|
|
* @property string $dIdentite
|
|
* @property string $dTelephone
|
|
* @property string $dEmail
|
|
* @property string $dFax
|
|
* @property enum $eLanguageCode
|
|
* @property string $eName
|
|
* @property string $eIdentifiers
|
|
* @property string $eAdresse
|
|
* @property string $eTelephone
|
|
* @property integer $ePays
|
|
* @property enum $eCreditOpinionCurrency
|
|
* @property integer $eCreditOpinionPeriod
|
|
* @property string $eBankers
|
|
* @property string $eAttentionOf
|
|
* @property string $eSpecialRemarks
|
|
* @property integer $commandes_id
|
|
* @property timestamp $created_at
|
|
* @property timestamp $updated_at
|
|
*
|
|
* @package ##PACKAGE##
|
|
* @subpackage ##SUBPACKAGE##
|
|
* @author ##NAME## <##EMAIL##>
|
|
* @version SVN: $Id: Builder.php 5441 2009-01-30 22:58:43Z jwage $
|
|
*/
|
|
abstract class BaseCommandesDetail extends Doctrine_Record
|
|
{
|
|
public function setTableDefinition()
|
|
{
|
|
$this->setTableName('commandes_detail');
|
|
$this->hasColumn('id', 'integer', 4, array('type' => 'integer', 'length' => 4, 'primary' => true, 'autoincrement' => true));
|
|
$this->hasColumn('dIdentite', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true));
|
|
$this->hasColumn('dTelephone', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true));
|
|
$this->hasColumn('dEmail', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true));
|
|
$this->hasColumn('dFax', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true));
|
|
$this->hasColumn('eLanguageCode', 'enum', 1, array('type' => 'enum', 'length' => 1, 'values' => array(0 => 'E', 1 => 'F', 2 => 'D'), 'notnull' => true));
|
|
$this->hasColumn('eName', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true));
|
|
$this->hasColumn('eIdentifiers', 'string', 500, array('type' => 'string', 'length' => 500, 'notnull' => true));
|
|
$this->hasColumn('eAdresse', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true));
|
|
$this->hasColumn('eTelephone', 'string', 100, array('type' => 'string', 'length' => 100, 'notnull' => true));
|
|
$this->hasColumn('ePays', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true));
|
|
$this->hasColumn('eCreditOpinionCurrency', 'enum', 3, array('type' => 'enum', 'length' => 3, 'values' => array(0 => 'GBP', 1 => 'EUR', 2 => 'USD', 3 => 'JYP', 4 => 'DKK'), 'notnull' => true));
|
|
$this->hasColumn('eCreditOpinionPeriod', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true));
|
|
$this->hasColumn('eBankers', 'string', 200, array('type' => 'string', 'length' => 200, 'notnull' => true));
|
|
$this->hasColumn('eAttentionOf', 'string', 200, array('type' => 'string', 'length' => 200, 'notnull' => true));
|
|
$this->hasColumn('eSpecialRemarks', 'string', 200, array('type' => 'string', 'length' => 200, 'notnull' => true));
|
|
$this->hasColumn('commandes_id', 'integer', 4, array('type' => 'integer', 'length' => 4, 'notnull' => true));
|
|
$this->hasColumn('created_at', 'timestamp', null, array('type' => 'timestamp', 'default' => '0000-00-00 00:00:00', 'notnull' => true));
|
|
$this->hasColumn('updated_at', 'timestamp', null, array('type' => 'timestamp', 'default' => '0000-00-00 00:00:00', 'notnull' => true));
|
|
}
|
|
|
|
} |