集团移除会员

This commit is contained in:
2024-02-26 14:39:10 +08:00
parent a796a761cc
commit d5078154db
8 changed files with 37 additions and 1 deletions

View File

@@ -150,4 +150,12 @@ public class MemberGroupController extends BaseController {
public AjaxResult removeStationFromMemberGroup(@RequestBody MemberGroupDTO dto) {
return toAjax(memberGroupService.removeStationFromMemberGroup(dto));
}
/**
* 集团移除会员
*/
@PostMapping("/removeMemberFromMemberGroup")
public AjaxResult removeMemberFromMemberGroup(@RequestBody MemberGroupDTO dto) {
return toAjax(memberGroupService.removeMemberFromMemberGroup(dto));
}
}