修复im请求参数类型

This commit is contained in:
junleea 2025-03-31 14:11:32 +08:00
parent 8a657398e2
commit 77777ceff2
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ type WSMessageReq struct {
Msg string `json:"msg"` //消息内容,只进行转发,不做处理
SessionID int `json:"session_id"` //应用层会话id
ToID int `json:"to_id"` //接收者id
ModelID int `json:"model_id"` //模型id
ModelID uint `json:"model_id"` //模型id
}
type ModelParam struct {