Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
I
ims
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
iuav
ims
Commits
f8ca6db7
提交
f8ca6db7
authored
10月 12, 2023
作者:
张小凤
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Dynamic(update)
上级
50be5e18
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
60 行增加
和
5 行删除
+60
-5
DynamicController.java
...ava/com/mmc/csf/release/controller/DynamicController.java
+9
-0
DynamicDao.java
...ice/src/main/java/com/mmc/csf/release/dao/DynamicDao.java
+5
-0
DynamicService.java
...main/java/com/mmc/csf/release/service/DynamicService.java
+3
-0
DynamicServiceImpl.java
.../com/mmc/csf/release/service/impl/DynamicServiceImpl.java
+16
-4
DynamicMapper.xml
...service/src/main/resources/mapper/forum/DynamicMapper.xml
+26
-1
not-check.yml
release-service/src/main/resources/not-check.yml
+1
-0
没有找到文件。
release-service/src/main/java/com/mmc/csf/release/controller/DynamicController.java
浏览文件 @
f8ca6db7
...
...
@@ -4,6 +4,7 @@ import com.mmc.csf.common.util.page.PageResult;
import
com.mmc.csf.common.util.web.ResultBody
;
import
com.mmc.csf.release.dao.gambit.GambitDao
;
import
com.mmc.csf.release.entity.forum.ForumDynamicUserDO
;
import
com.mmc.csf.release.entity.gambit.ForumAttentionDO
;
import
com.mmc.csf.release.forum.vo.CommentVO
;
import
com.mmc.csf.release.forum.vo.DynamicVO
;
import
com.mmc.csf.release.forum.vo.ReplyToAReviewVO
;
...
...
@@ -112,5 +113,13 @@ public class DynamicController extends BaseController {
}
@ApiOperation
(
value
=
"new飞手列表是否关注"
)
@GetMapping
(
"/getPilot"
)
public
ResultBody
<
ForumAttentionDO
>
getPilot
(
@RequestParam
Integer
userAccountId
){
return
ResultBody
.
success
(
dynamicService
.
getPilot
(
userAccountId
));
}
}
release-service/src/main/java/com/mmc/csf/release/dao/DynamicDao.java
浏览文件 @
f8ca6db7
package
com
.
mmc
.
csf
.
release
.
dao
;
import
com.mmc.csf.release.entity.forum.*
;
import
com.mmc.csf.release.entity.gambit.ForumAttentionDO
;
import
com.mmc.csf.release.entity.gambit.ForumGambitDO
;
import
com.mmc.csf.release.gambit.dto.ForumGambitDTO
;
import
com.mmc.csf.release.gambit.dto.PostingLeaderboardDTO
;
...
...
@@ -204,4 +205,8 @@ public interface DynamicDao {
void
updateDiscussionCounts
(
Integer
id
);
Integer
gambitName
(
String
gambitName
);
List
<
ForumAttentionDO
>
getPilot
(
Integer
userAccountId
);
List
<
ForumAttentionDO
>
getPilots
(
Integer
userAccountId
);
}
release-service/src/main/java/com/mmc/csf/release/service/DynamicService.java
浏览文件 @
f8ca6db7
...
...
@@ -2,6 +2,7 @@ package com.mmc.csf.release.service;
import
com.mmc.csf.common.util.page.PageResult
;
import
com.mmc.csf.common.util.web.ResultBody
;
import
com.mmc.csf.release.entity.gambit.ForumAttentionDO
;
import
com.mmc.csf.release.forum.vo.CommentVO
;
import
com.mmc.csf.release.forum.vo.DynamicVO
;
import
com.mmc.csf.release.forum.vo.ReplyToAReviewVO
;
...
...
@@ -70,4 +71,6 @@ public interface DynamicService {
ResultBody
reviewLikes
(
Integer
id
,
Integer
userAccountId
,
Boolean
status
);
PageResult
postingLeaderboard
(
PostingLeaderboardQO
postingLeaderboardQO
);
List
<
ForumAttentionDO
>
getPilot
(
Integer
userAccountId
);
}
release-service/src/main/java/com/mmc/csf/release/service/impl/DynamicServiceImpl.java
浏览文件 @
f8ca6db7
...
...
@@ -38,10 +38,7 @@ import org.springframework.web.client.RestTemplate;
import
javax.annotation.Resource
;
import
javax.servlet.http.HttpServletRequest
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Set
;
import
java.util.*
;
import
java.util.function.Function
;
import
java.util.stream.Collectors
;
import
java.util.stream.Stream
;
...
...
@@ -539,6 +536,21 @@ public class DynamicServiceImpl implements DynamicService {
return
PageResult
.
buildPage
(
pageNo
,
postingLeaderboardQO
.
getPageSize
(),
postingLeaderboardDTOS
.
size
(),
postingLeaderboardDTOS
);
}
@Override
public
List
<
ForumAttentionDO
>
getPilot
(
Integer
userAccountId
)
{
List
<
ForumAttentionDO
>
list
=
new
ArrayList
<>();
List
<
ForumAttentionDO
>
forumAttentionDOS
=
dynamicDao
.
getPilot
(
userAccountId
);
for
(
ForumAttentionDO
forumAttentionDO
:
forumAttentionDOS
)
{
list
.
add
(
forumAttentionDO
);
}
List
<
ForumAttentionDO
>
forumAttentionList
=
dynamicDao
.
getPilots
(
userAccountId
);
for
(
ForumAttentionDO
forumAttentionDO
:
forumAttentionList
)
{
list
.
add
(
forumAttentionDO
);
}
List
<
ForumAttentionDO
>
collect
=
list
.
stream
().
distinct
().
collect
(
Collectors
.
toList
());
return
collect
;
}
public
UserAccountVO
info
(
Integer
userAccountId
)
{
String
token
=
null
;
...
...
release-service/src/main/resources/mapper/forum/DynamicMapper.xml
浏览文件 @
f8ca6db7
...
...
@@ -104,6 +104,30 @@
</if>
</select>
<select
id=
"getPilot"
resultType=
"com.mmc.csf.release.entity.gambit.ForumAttentionDO"
>
select id,user_account_id,create_time,update_time,attention_user_account_id,`status`,mutual_attention
from forum_attention where attention_user_account_id=#{userAccountId}
</select>
<select
id=
"getPilots"
resultType=
"com.mmc.csf.release.entity.gambit.ForumAttentionDO"
>
SELECT
id,
user_account_id,
create_time,
update_time,
attention_user_account_id,
`status`,
mutual_attention
FROM
forum_attention
WHERE
mutual_attention = 1
AND attention_user_account_id IN ( #{userAccountId} )
OR user_account_id IN (
#{userAccountId}
)
</select>
<update
id=
"updateDiscussionCount"
>
update forum_gambit
set discussion_count=#{count},
...
...
@@ -421,7 +445,8 @@
fd.comments_count,
fd.create_time,
fd.id AS dynamicId,
fdg.gambit_id
fdg.gambit_id,
fd.transpond
FROM
forum_dynamic fd
INNER JOIN forum_dynamic_gambit fdg ON fd.id = fdg.dynamic_id
...
...
release-service/src/main/resources/not-check.yml
浏览文件 @
f8ca6db7
...
...
@@ -41,3 +41,4 @@ data-filter:
-
/release/dynamic/recentNews
-
/release/curriculum/getCurriculumCount
-
/release/report/getReleaseReportData
-
/release/dynamic/getPilot
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论