dd/app/Models/CacheTgTime.php
2026-01-22 19:08:25 +08:00

14 lines
234 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class CacheTgTime extends Model
{
protected $table = 'cache_tg_time';
public $timestamps = false;
protected $fillable = ['group_code', 'time'];
}