krgm.so-manager-dev.com/app/Models/OperatorLog.php
你的名字 1f56307b2c
All checks were successful
Deploy main / deploy (push) Successful in 23s
【グローバルメニュー】画面修正
2025-09-04 17:41:41 +09:00

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',
];
}