#feature: add AI log analysis & some bugfix
This commit is contained in:
25
app/Models/LogAnalysisReport.php
Normal file
25
app/Models/LogAnalysisReport.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
class LogAnalysisReport extends BaseModel
|
||||
{
|
||||
protected $fillable = [
|
||||
'from_time',
|
||||
'to_time',
|
||||
'query',
|
||||
'mode',
|
||||
'total_logs',
|
||||
'results',
|
||||
'metadata',
|
||||
'status',
|
||||
'error_message',
|
||||
];
|
||||
|
||||
protected $casts = [
|
||||
'from_time' => 'datetime',
|
||||
'to_time' => 'datetime',
|
||||
'results' => 'array',
|
||||
'metadata' => 'array',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user