Code.php 310 B

123456789101112131415161718
  1. <?php
  2. namespace PhpLife\App\Script\Package\Database;
  3. use PhpLife\Frame\Package\Database\Single;
  4. class Code extends Single
  5. {
  6. const CONFIG_CLASS = 'MySQL\\Shadowsocks';
  7. protected static $tableName = 'invite_code';
  8. protected static $fields = array();
  9. protected static $primaryKey = 'id';
  10. }