1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- class CcSmembTableMap extends TableMap {
-
- const CLASS_NAME = 'airtime.map.CcSmembTableMap';
-
- public function initialize()
- {
-
- $this->setName('cc_smemb');
- $this->setPhpName('CcSmemb');
- $this->setClassname('CcSmemb');
- $this->setPackage('airtime');
- $this->setUseIdGenerator(false);
-
- $this->addPrimaryKey('ID', 'Id', 'INTEGER', true, null, null);
- $this->addColumn('UID', 'Uid', 'INTEGER', true, null, 0);
- $this->addColumn('GID', 'Gid', 'INTEGER', true, null, 0);
- $this->addColumn('LEVEL', 'Level', 'INTEGER', true, null, 0);
- $this->addColumn('MID', 'Mid', 'INTEGER', false, null, null);
-
- }
-
- public function buildRelations()
- {
- }
- }
|