| 1234567891011121314151617181920 |
- <?php
- namespace PhpLife\App\Api\Package\Database;
- use PhpLife\Frame\Package\Database\Single;
- /**
- * 磁力信息
- */
- class Hash extends Single
- {
- const CONFIG_CLASS = 'MySQL\\Core';
- protected static $tableName = 'search_hash';
- protected static $fields = array();
- protected static $primaryKey = 'id';
- }
|