fuc-new/src/Models/Me.php
hellcat 1fe8673f62 1
2025-10-01 13:34:29 +08:00

20 lines
270 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Query\Builder;
class Me extends Model
{
protected $table = 'me';
public $timestamps = false;
protected $fillable = [
'rag',
'class',
];
// public static function
}