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