mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-03-29 04:23:48 +08:00
fix: 修复配置管理查询错误
This commit is contained in:
@@ -36,8 +36,8 @@ public class ChatConfigController extends BaseController {
|
||||
*/
|
||||
@GetMapping("/list")
|
||||
@SaCheckPermission("system:config:list")
|
||||
public List<ChatConfigVo> list(ChatConfigBo bo) {
|
||||
return chatConfigService.queryList(bo);
|
||||
public R<List<ChatConfigVo>> list(ChatConfigBo bo) {
|
||||
return R.ok(chatConfigService.queryList(bo));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user