会员组移除站点

This commit is contained in:
2024-02-23 15:06:29 +08:00
parent 11a7e4c199
commit fae000e072
7 changed files with 52 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
package com.jsowell.pile.controller;
package com.jsowell.web.controller.pile;
import com.alibaba.fastjson2.JSON;
import com.jsowell.common.annotation.Log;
@@ -142,4 +142,12 @@ public class MemberGroupController extends BaseController {
startPage();
return getDataTable(memberGroupService.queryStationList(dto));
}
/**
* 集团组移除站点
*/
@PostMapping("/removeStationFromMemberGroup")
public AjaxResult removeStationFromMemberGroup(@RequestBody MemberGroupDTO dto) {
return toAjax(memberGroupService.removeStationFromMemberGroup(dto));
}
}