|
@@ -469,7 +469,10 @@ public class SysMusicScoreServiceImpl extends BaseServiceImpl<Integer, SysMusicS
|
|
|
CbsMusicSheetApplicationExtendClientWrapper.MusicSheetApplicationExtendStatus extendStatus = new CbsMusicSheetApplicationExtendClientWrapper.MusicSheetApplicationExtendStatus();
|
|
|
extendStatus.setIds(musicSheetApplication.getApplicationExtendId().toString());
|
|
|
extendStatus.setStatus(showFlag == 1);
|
|
|
- musicFeignClientService.musicSheetApplicationExtendStatus(extendStatus);
|
|
|
+ R<JSONObject> jsonObjectR = musicFeignClientService.musicSheetApplicationExtendStatus(extendStatus);
|
|
|
+ if (jsonObjectR.getCode() != 200) {
|
|
|
+ throw new BizException("修改曲目状态失败,{}", jsonObjectR.getMessage());
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|