文本聊天已完成

This commit is contained in:
2025-06-26 15:41:29 +08:00
parent 9f0ef4cc26
commit 16e028e50e
14 changed files with 574 additions and 450 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models\im;
use Illuminate\Database\Eloquent\Model;
class ChatRoomUserModel extends Model
{
//
protected $table = 'nl_chat_room_user';
protected $primaryKey = 'id';
public $timestamps = false;
protected $guarded = [];
}