File.php 334 B

123456789101112131415161718192021
  1. <?php
  2. namespace PhpLife\App\Api\Package\Database;
  3. use PhpLife\Frame\Package\Database\Single;
  4. /**
  5. * 磁力文件信息
  6. */
  7. class File extends Single
  8. {
  9. const CONFIG_CLASS = 'MySQL\\Core';
  10. protected static $tableName = 'search_filelist';
  11. protected static $fields = array();
  12. protected static $primaryKey = 'id';
  13. }