| 123456789101112131415161718 |
- <?php
- namespace PhpLife\App\Api\Package\Database;
- use PhpLife\Frame\Package\Database\Single;
- class Material extends Single
- {
- const CONFIG_CLASS = 'MySQL\\Makeup';
- protected static $tableName = 'material_data';
- protected static $fields = array();
- protected static $primaryKey = 'id';
- }
|