feat: #20220801 日志查询接口

This commit is contained in:
赵世界 2022-08-01 14:28:49 +08:00
parent 5316f6463f
commit df2acd46db

View File

@ -2,7 +2,20 @@
namespace App\Models; namespace App\Models;
use App\Models\traits\Filter;
class Log extends Model class Log extends Model
{ {
use Filter;
//查询字段
public $fieldSearchable = [
'moudule',
'action',
'target_type',
'target_id',
'target_field',
'user_id',
'created_at',
];
} }