* +---------------------------------------------------------------------- */ namespace App\Http\Contract\System; /** * 日志. */ interface LogInterface { /** * 获取列表(分页). */ public function getLogPageList(array $where, int $page, int $limit, array $field, array|string $sort, array $with): array; /** * 新增日志记录. */ public function createLog(string $userId, string $userName, string $type): bool; }