| 12345678910111213141516171819202122232425 |
- <?php
- namespace App\Module\System\Models;
- use App\Models\ModelCore;
- /**
- * 管理员
- *
- * field start
- * @property int $id
- * @property string $username
- * @property string $password
- * @property string $name
- * @property string $avatar
- * @property string $remember_token
- * @property \Carbon\Carbon $created_at
- * @property \Carbon\Carbon $updated_at
- * field end
- *
- */
- class AdminUser extends ModelCore
- {
- }
|