Files
api_arrahn/app/AuditCustomer.php
T
2022-07-26 22:14:01 +08:00

23 lines
403 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class AuditCustomer extends Model
{
protected $table = 'audit_customer';
protected $connection = 'mysql7';
protected $fillable = [
'aid',
'username',
'old_data',
'new_data',
'kodcaw',
'created_at',
'updated_at',
'customer_name',
'customer_nokp',
];
}