Files
nnterp-react-admin/app/Models/ApikeySetiings.php
2026-03-13 20:49:46 +08:00

18 lines
266 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ApikeySetiings extends Model
{
protected $table = 'apikey_setiings';
protected $fillable = [
'key',
'provider',
'is_active',
'created_by',
];
}