Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
O
operate-customer-service
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
沈振路
operate-customer-service
Commits
c0b57dff
提交
c0b57dff
authored
11月 02, 2023
作者:
沈振路
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
关回多图文编辑回显
上级
5a006ffe
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
32 行增加
和
17 行删除
+32
-17
CustomerFollowReplyServiceImpl.java
...customer/service/impl/CustomerFollowReplyServiceImpl.java
+29
-17
FollowReplyInfoVO.java
...va/com/yaoyaozw/customer/vo/follow/FollowReplyInfoVO.java
+3
-0
没有找到文件。
src/main/java/com/yaoyaozw/customer/service/impl/CustomerFollowReplyServiceImpl.java
浏览文件 @
c0b57dff
...
...
@@ -279,26 +279,38 @@ public class CustomerFollowReplyServiceImpl extends ServiceImpl<CustomerFollowRe
FollowReplyInfoVO
infoVo
=
new
FollowReplyInfoVO
();
BeanUtil
.
copyProperties
(
entity
,
infoVo
);
// 获取素材的链接数据
if
(
CustomerMaterialConstant
.
needReferral
(
entity
.
getType
()))
{
// 是需要设置referral的类型
if
(
CustomerMaterialConstant
.
TENCENT_MEDIA_TYPE_TEXT
.
equals
(
entity
.
getType
()))
{
// 文本类型
List
<
ReferralEntity
>
referralList
=
referralEntityService
.
list
(
new
QueryWrapper
<
ReferralEntity
>().
eq
(
ReferralEntity
.
COL_MATERIAL_GRAPHICS_ID
,
id
).
orderByAsc
(
"sort"
));
infoVo
.
setTextBodyList
(
getReferralBodyFromEntity
(
referralList
));
}
else
if
(
CustomerMaterialConstant
.
TENCENT_MEDIA_TYPE_NEWS
.
equals
(
entity
.
getType
()))
{
try
{
// 设置图文类型的链接数据
ReferralEntity
referralEntity
=
referralEntityService
.
getOne
(
new
QueryWrapper
<
ReferralEntity
>().
eq
(
ReferralEntity
.
COL_MATERIAL_GRAPHICS_ID
,
id
));
if
(
ObjectUtil
.
isNotNull
(
referralEntity
))
{
CommonReferralBody
referralBody
=
new
CommonReferralBody
();
BeanUtil
.
copyProperties
(
referralEntity
,
referralBody
);
infoVo
.
setReferralBody
(
referralBody
);
if
(!
CustomerMaterialConstant
.
TENCENT_MEDIA_TYPE_MULTI_NEWS
.
equals
(
entity
.
getType
()))
{
// 获取素材的链接数据
if
(
CustomerMaterialConstant
.
needReferral
(
entity
.
getType
()))
{
// 是需要设置referral的类型
if
(
CustomerMaterialConstant
.
TENCENT_MEDIA_TYPE_TEXT
.
equals
(
entity
.
getType
()))
{
// 文本类型
List
<
ReferralEntity
>
referralList
=
referralEntityService
.
list
(
new
QueryWrapper
<
ReferralEntity
>().
eq
(
ReferralEntity
.
COL_MATERIAL_GRAPHICS_ID
,
id
).
orderByAsc
(
"sort"
));
infoVo
.
setTextBodyList
(
getReferralBodyFromEntity
(
referralList
));
}
else
if
(
CustomerMaterialConstant
.
TENCENT_MEDIA_TYPE_NEWS
.
equals
(
entity
.
getType
()))
{
try
{
// 设置图文类型的链接数据
ReferralEntity
referralEntity
=
referralEntityService
.
getOne
(
new
QueryWrapper
<
ReferralEntity
>().
eq
(
ReferralEntity
.
COL_MATERIAL_GRAPHICS_ID
,
id
));
if
(
ObjectUtil
.
isNotNull
(
referralEntity
))
{
CommonReferralBody
referralBody
=
new
CommonReferralBody
();
BeanUtil
.
copyProperties
(
referralEntity
,
referralBody
);
infoVo
.
setReferralBody
(
referralBody
);
}
}
catch
(
Exception
e
)
{
return
new
GenericsResult
<>(
false
,
"获取图文链接实体异常"
);
}
}
catch
(
Exception
e
)
{
return
new
GenericsResult
<>(
false
,
"获取图文链接实体异常"
);
}
}
}
else
{
// 获取多图文
List
<
CustomerFollowReplyMultiNews
>
multiNewsList
=
followReplyMultiNewsService
.
list
(
new
QueryWrapper
<
CustomerFollowReplyMultiNews
>().
eq
(
"reply_id"
,
id
));
if
(
CollectionUtil
.
isNotEmpty
(
multiNewsList
))
{
List
<
Long
>
multiNewsIdList
=
multiNewsList
.
stream
().
map
(
CustomerFollowReplyMultiNews:
:
getId
).
collect
(
Collectors
.
toList
());
List
<
ReferralEntity
>
referralEntityList
=
referralEntityService
.
list
(
new
QueryWrapper
<
ReferralEntity
>().
in
(
ReferralEntity
.
COL_MATERIAL_GRAPHICS_ID
,
multiNewsIdList
));
Map
<
Long
,
ReferralEntity
>
referralEntityMap
=
referralEntityList
.
stream
().
collect
(
Collectors
.
toMap
(
ReferralEntity:
:
getMaterialGraphicsId
,
Function
.
identity
(),
(
o1
,
o2
)
->
o2
));
multiNewsList
.
forEach
(
item
->
item
.
setReferralEntity
(
referralEntityMap
.
get
(
item
.
getId
())));
infoVo
.
setMultiNewsList
(
multiNewsList
);
}
}
// 根据appid获取公众号信息
AuthInfoVO
authInfo
=
authorizerInfoService
.
getAuthInfoByAppid
(
infoVo
.
getAppid
());
...
...
src/main/java/com/yaoyaozw/customer/vo/follow/FollowReplyInfoVO.java
浏览文件 @
c0b57dff
...
...
@@ -4,6 +4,7 @@ import cn.hutool.core.util.ObjectUtil;
import
com.fasterxml.jackson.databind.annotation.JsonSerialize
;
import
com.fasterxml.jackson.databind.ser.std.ToStringSerializer
;
import
com.yaoyaozw.customer.entity.CommonReferralBody
;
import
com.yaoyaozw.customer.entity.CustomerFollowReplyMultiNews
;
import
com.yaoyaozw.customer.vo.AuthInfoVO
;
import
lombok.Data
;
...
...
@@ -39,6 +40,8 @@ public class FollowReplyInfoVO implements Serializable {
private
CommonReferralBody
referralBody
;
private
List
<
CustomerFollowReplyMultiNews
>
multiNewsList
;
private
List
<
CommonReferralBody
>
textBodyList
;
public
CommonReferralBody
getReferralBody
()
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论