love_php/app/Models/Dma/S2Customer.php

15 lines
237 B
PHP
Raw Normal View History

2026-04-09 13:52:20 +08:00
<?php
namespace App\Models\Dma;
use Illuminate\Database\Eloquent\Model;
class S2Customer extends Model
{
protected $table = 's2_customer';
protected $connection = 'dma';
public $fillable = [];
public $guarded = [];
}