|
|
@@ -68,7 +68,7 @@ public class CorpFollowServiceImpl implements CorpFollowService {
|
|
|
if (CollUtil.isEmpty(followIds)) {
|
|
|
throw BusinessRuntimeException.getInstance("请选择对应客服");
|
|
|
}
|
|
|
- activeCode.setFollowStr(followIds.toString());
|
|
|
+ activeCode.setFollowStr(Jsons.toJson(followIds));
|
|
|
activeCode.setMarkTag(activeCode.getMarkTag().trim());
|
|
|
String text = activeCode.getText();
|
|
|
if (StrUtil.isNotBlank(text) && text.length() > 4000) {
|
|
|
@@ -111,7 +111,7 @@ public class CorpFollowServiceImpl implements CorpFollowService {
|
|
|
if (CollUtil.isEmpty(up_corpFollows)) {
|
|
|
throw BusinessRuntimeException.getInstance("请选择对应客服");
|
|
|
}
|
|
|
- activeCode.setFollowStr(up_corpFollows.toString());
|
|
|
+ activeCode.setFollowStr(Jsons.toJson(up_corpFollows));
|
|
|
if (StrUtil.isEmpty(activeCode.getMarkTag())) {
|
|
|
throw BusinessRuntimeException.getInstance("请输入标签");
|
|
|
}
|