Files
ExpinBot/.svn/pristine/7d/7d7af4586f61fc7fb511b666e322c43710345558.svn-base
T
2025-05-18 08:52:56 +07:00

26 lines
442 B
Plaintext
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TgBot extends Model
{
// 显式指定表名
protected $table = 'tg_bot';
protected $guarded = ['id'];
// 可批量赋值的字段
protected $fillable = [
'bot_id',
'bot_token',
'bot_username',
'subjection_username',
'subjection_mobile',
'subjection',
'webhook',
'memo',
];
}