|
|
@@ -105,7 +105,7 @@ public class FeedbackOptionServiceImpl extends ServiceImpl<IFeedbackOptionMapper
|
|
|
|
|
|
LambdaUpdateWrapper<FeedbackOption> updateWrapper = new LambdaUpdateWrapper<>();
|
|
|
updateWrapper.eq(FeedbackOption::getId,option.getId());
|
|
|
- updateWrapper.set(FeedbackOption::getAiOption,aiOption);
|
|
|
+ updateWrapper.set(FeedbackOption::getAiOption,aiOption.toJSONString());
|
|
|
this.update(updateWrapper);
|
|
|
}
|
|
|
|
|
|
@@ -119,7 +119,7 @@ public class FeedbackOptionServiceImpl extends ServiceImpl<IFeedbackOptionMapper
|
|
|
|
|
|
LambdaUpdateWrapper<Case> updateWrapper = new LambdaUpdateWrapper<>();
|
|
|
updateWrapper.eq(Case::getId,option.getId());
|
|
|
- updateWrapper.set(Case::getFeedbackOptionIds,aiOption);
|
|
|
+ updateWrapper.set(Case::getFeedbackOptionIds,aiOption.toJSONString());
|
|
|
caseService.update(updateWrapper);
|
|
|
}
|
|
|
|