12345678910111213141516171819 |
- <?php
- declare (strict_types = 1);
- namespace app\model\system;
- use library\basic\BaseModel;
- use library\traits\JwtAuthModelTrait;
- use library\traits\ModelTrait;
- use think\Model;
- /**
- * @mixin \think\Model
- */
- class AdminLog extends BaseModel
- {
- use ModelTrait;
- use JwtAuthModelTrait;
- //
- }
|