Skip to content
代码片段 群组 项目

[Refactor#]修正群组管理url格式

已合并 tzih请求将feat/tangzihan合并到main
1 文件
+ 2
2
比较变更
  • 并排
  • 内联
@@ -51,7 +51,7 @@ public class GroupChatController {
* @param chatInfoRequest 更新群组信息服务请求参数
* @return 处理结果
*/
@PostMapping("/edit")
@PostMapping("/update")
public SaberResponse<String> updateChatInfo(@RequestBody ChatInfoRequest chatInfoRequest) {
return iChatInfoBiz.updateChatInfo(chatInfoRequest);
}
@@ -61,7 +61,7 @@ public class GroupChatController {
* @param id 群组信息id
* @return 处理结果
*/
@RequestMapping("/del")
@RequestMapping("/delete")
public SaberResponse<String> deleteChatInfo(@RequestParam("id") Integer id) {
return iChatInfoBiz.deleteChatInfo(id);
}
加载中