This commit is contained in:
shuo.wang
2025-04-15 13:38:09 +08:00
parent da53fb148c
commit c835844913
4 changed files with 8 additions and 6 deletions

View File

@@ -47,8 +47,8 @@ public class PCOrderSysInfoController {
@GetMapping("/getXgjOrganization")
@ApiOperation("获取新管家组织架构")
public ResponseResult<List<XgjOrganizationDTO>> getXgjOrganization(@RequestParam(value = "partnerId", required = true,defaultValue = "0") String partnerId) {
return ResponseResult.success(pushService.getXgjOrganization(partnerId));
public ResponseResult<List<XgjOrganizationDTO>> getXgjOrganization(@RequestParam(value = "parentId", required = true,defaultValue = "0") String parentId) {
return ResponseResult.success(pushService.getXgjOrganization(parentId));
}
}