|
@@ -70,7 +70,7 @@ public class FeedbackOptionServiceImpl extends ServiceImpl<IFeedbackOptionMapper
|
|
|
throw new BusinessException(ResultCode.MISSING_REQUIRED_PARAMETERS);
|
|
|
}
|
|
|
FeedbackOption feedbackOption = this.getById(param.getId());
|
|
|
- if(feedbackOption == null || feedbackOption.getSystem() == 1){
|
|
|
+ if(feedbackOption == null || feedbackOption.getIsSystem() == 1){
|
|
|
throw new BusinessException(ResultCode.FEEDBACK_OPTION_DELETE_ERROR);
|
|
|
}
|
|
|
this.removeById(param.getId());
|