提交 820d622d 作者: obcy

【fix】

上级 92eacf11
package com.zzsn.event.service.impl; package com.zzsn.event.service.impl;
import com.alibaba.fastjson2.JSON; import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONArray;
import com.alibaba.fastjson2.JSONObject; import com.alibaba.fastjson2.JSONObject;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
...@@ -423,10 +424,12 @@ public class KeyWordsServiceImpl extends ServiceImpl<KeyWordsMapper, KeyWords> i ...@@ -423,10 +424,12 @@ public class KeyWordsServiceImpl extends ServiceImpl<KeyWordsMapper, KeyWords> i
relation.setKeywordsGroupIds(keyWordsId); relation.setKeywordsGroupIds(keyWordsId);
relation.setRelationType(String.valueOf(i)); relation.setRelationType(String.valueOf(i));
relation.setExpressionStr(keyWordsId); relation.setExpressionStr(keyWordsId);
JSONArray jsonArray = new JSONArray();
JSONObject jsonObject = new JSONObject(); JSONObject jsonObject = new JSONObject();
jsonObject.put("title", wordsName); jsonObject.put("title", wordsName);
jsonObject.put("value", keyWordsId); jsonObject.put("value", keyWordsId);
relation.setParamsStr(JSON.toJSONString(jsonObject)); jsonArray.add(jsonObject);
relation.setParamsStr(JSON.toJSONString(jsonArray));
relationList.add(relation); relationList.add(relation);
} }
} else if (type == 2) { } else if (type == 2) {
...@@ -443,10 +446,12 @@ public class KeyWordsServiceImpl extends ServiceImpl<KeyWordsMapper, KeyWords> i ...@@ -443,10 +446,12 @@ public class KeyWordsServiceImpl extends ServiceImpl<KeyWordsMapper, KeyWords> i
relation.setKeywordsGroupIds(keyWordsId); relation.setKeywordsGroupIds(keyWordsId);
relation.setRelationType("3"); relation.setRelationType("3");
relation.setExpressionStr(keyWordsId); relation.setExpressionStr(keyWordsId);
JSONArray jsonArray = new JSONArray();
JSONObject jsonObject = new JSONObject(); JSONObject jsonObject = new JSONObject();
jsonObject.put("title", wordsName); jsonObject.put("title", wordsName);
jsonObject.put("value", keyWordsId); jsonObject.put("value", keyWordsId);
relation.setParamsStr(JSON.toJSONString(jsonObject)); jsonArray.add(jsonObject);
relation.setParamsStr(JSON.toJSONString(jsonArray));
relationList.add(relation); relationList.add(relation);
} }
subjectKeywordsMapService.saveBatch(dataList); subjectKeywordsMapService.saveBatch(dataList);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论