This commit is contained in:
parent
c214bf4a5c
commit
1f56307b2c
25
app/Models/OperatorLog.php
Normal file
25
app/Models/OperatorLog.php
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?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',
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user