1234567891011121314151617181920212223 |
- <?php
- /**
- * Define a ResourcePart.
- * @author Chuck NORRIS
- * @category Plugin
- * @license copyright
- */
- class ResourcePart extends Entity{
- public $id,$part,$resource;
- protected $TABLE_NAME = 'part_resource_part';
- public $fields =
- array(
- 'id' => 'key',
- 'part' => 'int',
- 'resource' => 'int'
- );
- public $links = array(
- 'part' => 'Part',
- 'resource' => 'Resource'
- );
- }
- ?>
|