26 lines
538 B
PHP
26 lines
538 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class OperatorLog extends Model
|
|
{
|
|
protected $table = 'operator_log';
|
|
protected $primaryKey = 'operator_log_id';
|
|
public $timestamps = false;
|
|
protected $fillable = [
|
|
'operator_id',
|
|
'remote_ip',
|
|
'browser_user_agent',
|
|
'user_id',
|
|
'contract_id',
|
|
'operation_code',
|
|
'operation_comment',
|
|
'operation_form_name',
|
|
'operation_table_name',
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
}
|