From 703e183424fa706006109e06a4a679b3d4227746 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= Date: Thu, 4 Jul 2024 21:17:29 +0800 Subject: [PATCH] :bug: Fix a bug. --- app/friend.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/friend.go b/app/friend.go index 5026f74..1bd2e6a 100644 --- a/app/friend.go +++ b/app/friend.go @@ -19,8 +19,8 @@ type changeStatusParam struct { // changeUseAiModelParam // @description: 修改使用的AI模型用的参数集 type changeUseAiModelParam struct { - WxId string `json:"wxid"` // 群Id或微信Id - Model string `json:"model" binding:"required"` // 模型代码 + WxId string `json:"wxid" binding:"required"` // 群Id或微信Id + Model string `json:"model"` // 模型代码 } // autoClearMembers -- 2.45.2