| 123456789101112131415161718 |
- <?php
- namespace PhpLife\App\Script\Package\Database;
- use PhpLife\Frame\Package\Database\Single;
- class Code extends Single
- {
- const CONFIG_CLASS = 'MySQL\\Shadowsocks';
- protected static $tableName = 'invite_code';
- protected static $fields = array();
- protected static $primaryKey = 'id';
- }
|