erp/app/Models/Log.php

22 lines
310 B
PHP

<?php
namespace App\Models;
use App\Models\traits\Filter;
class Log extends Model
{
use Filter;
//查询字段
public $fieldSearchable = [
'moudule',
'action',
'target_type',
'target_id',
'target_field',
'user_id',
'created_at',
];
}