12345678910111213141516171819202122232425 |
- <?php
- /**
- * Define a user for a firm.
- * @author valentin carruesco
- * @category Core
- * @license copyright
- */
- class UserFirmRank extends Entity{
- public $id,$firm,$user,$rank;
- protected $TABLE_NAME = 'user_firm_rank';
- public $links = array(
- 'rank' => 'Rank',
- 'firm' => 'Firm'
- );
- protected $fields =
- array(
- 'id' => 'key',
- 'firm' => 'int',
- 'user' => 'string',
- 'rank' => 'int'
- );
- }
- ?>
|