<?php
declare (strict_types=1);
namespace App\System\Model;
use Mine\MineModel;
class SystemApiLog extends MineModel
{
public $incrementing = false;
public $timestamps = false;
protected $table = 'system_api_log';
protected $fillable = ['id', 'api_id', 'api_name', 'access_name', 'request_data', 'response_code', 'response_data', 'ip', 'ip_location', 'access_time', 'remark'];
protected $casts = ['id' => 'integer', 'api_id' => 'integer', 'request_data' => 'array'];
}