erp/app/Models/Log.php

22 lines
310 B
PHP
Raw Normal View History

<?php
namespace App\Models;
2022-08-01 14:28:49 +08:00
use App\Models\traits\Filter;
class Log extends Model
{
2022-08-01 14:28:49 +08:00
use Filter;
2022-08-01 14:28:49 +08:00
//查询字段
public $fieldSearchable = [
'moudule',
'action',
'target_type',
'target_id',
'target_field',
'user_id',
'created_at',
];
}