|
@@ -262,9 +262,10 @@ public class BizUserController {
|
|
|
@ApiOperationSupport(order = 12)
|
|
|
@ApiOperation("更新平台类别")
|
|
|
@GetMapping("/biz/user/updatePlatformType")
|
|
|
- public CommonResult<String> updatePlatformType(@Valid BizUserPlatformParam bizUserPlatformParam) {
|
|
|
+ public CommonResult<BizUser> updatePlatformType(@Valid BizUserPlatformParam bizUserPlatformParam) {
|
|
|
bizUserService.updatePlatformType(bizUserPlatformParam);
|
|
|
- return CommonResult.ok();
|
|
|
+ BizUser user = bizUserService.getById(bizUserPlatformParam.getId());
|
|
|
+ return CommonResult.data(user);
|
|
|
}
|
|
|
|
|
|
/**
|