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