Hash.php 323 B

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