This commit is contained in:
shuo.wang
2025-04-15 16:47:30 +08:00
parent cd81910c2f
commit 8beaa78c3f

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));
}
}