Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cmeeting
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
翟斌
cmeeting
Commits
7728651c
提交
7728651c
authored
7月 22, 2025
作者:
洪东保
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'hongdongbao'
父级
dce6c6df
deb404a9
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
4 行增加
和
7 行删除
+4
-7
src/main/java/com/cmeeting/service/impl/MeetingInfoServiceImpl.java
+0
-1
src/main/java/com/cmeeting/service/impl/ModulePermissionServiceImpl.java
+2
-2
src/main/java/com/cmeeting/service/impl/TencentMeetingServiceImpl.java
+2
-4
没有找到文件。
src/main/java/com/cmeeting/service/impl/MeetingInfoServiceImpl.java
浏览文件 @
7728651c
...
@@ -109,7 +109,6 @@ public class MeetingInfoServiceImpl extends ServiceImpl<MeetingInfoMapper, Meeti
...
@@ -109,7 +109,6 @@ public class MeetingInfoServiceImpl extends ServiceImpl<MeetingInfoMapper, Meeti
.
between
(
vo
.
getStartTime
()
!=
null
,
MeetingInfo:
:
getStartTime
,
vo
.
getStartTime
(),
vo
.
getEndTime
())
.
between
(
vo
.
getStartTime
()
!=
null
,
MeetingInfo:
:
getStartTime
,
vo
.
getStartTime
(),
vo
.
getEndTime
())
.
select
(
MeetingInfo:
:
getId
,
MeetingInfo:
:
getMeetingId
,
MeetingInfo:
:
getSubject
,
MeetingInfo:
:
getHost
,
MeetingInfo:
:
getHostUid
,
.
select
(
MeetingInfo:
:
getId
,
MeetingInfo:
:
getMeetingId
,
MeetingInfo:
:
getSubject
,
MeetingInfo:
:
getHost
,
MeetingInfo:
:
getHostUid
,
MeetingInfo:
:
getStartTime
,
MeetingInfo:
:
getEndTime
,
MeetingInfo:
:
getIsGenerated
,
MeetingInfo:
:
getIsPushed
);
MeetingInfo:
:
getStartTime
,
MeetingInfo:
:
getEndTime
,
MeetingInfo:
:
getIsGenerated
,
MeetingInfo:
:
getIsPushed
);
// TODO查询部门
Page
<
MeetingInfo
>
meetingInfoPage
=
mapper
.
selectPage
(
new
Page
<>(
vo
.
getCurrent
(),
vo
.
getSize
()),
queryWrapper
);
Page
<
MeetingInfo
>
meetingInfoPage
=
mapper
.
selectPage
(
new
Page
<>(
vo
.
getCurrent
(),
vo
.
getSize
()),
queryWrapper
);
if
(
CollUtil
.
isNotEmpty
(
meetingInfoPage
.
getRecords
()))
{
if
(
CollUtil
.
isNotEmpty
(
meetingInfoPage
.
getRecords
()))
{
List
<
MeetingInfo
>
records
=
meetingInfoPage
.
getRecords
();
List
<
MeetingInfo
>
records
=
meetingInfoPage
.
getRecords
();
...
...
src/main/java/com/cmeeting/service/impl/ModulePermissionServiceImpl.java
浏览文件 @
7728651c
...
@@ -61,7 +61,7 @@ public class ModulePermissionServiceImpl extends ServiceImpl<ModulePermissionMap
...
@@ -61,7 +61,7 @@ public class ModulePermissionServiceImpl extends ServiceImpl<ModulePermissionMap
// 授权了所有人
// 授权了所有人
boolean
all
=
userIds
.
contains
(
CategoryConstant
.
ALL_EN
)
||
deptIds
.
contains
(
CategoryConstant
.
ALL_EN
);
boolean
all
=
userIds
.
contains
(
CategoryConstant
.
ALL_EN
)
||
deptIds
.
contains
(
CategoryConstant
.
ALL_EN
);
List
<
PermissionCheckedDTO
.
Category
>
categoryList
=
dto
.
getCategoryList
();
List
<
PermissionCheckedDTO
.
Category
>
categoryList
=
dto
.
getCategoryList
();
if
(
CollUtil
.
isNotEmpty
(
deptIds
)
&&
CollUtil
.
isEmpty
(
categoryList
))
{
if
(
CollUtil
.
isNotEmpty
(
deptIds
)
&&
CollUtil
.
is
Not
Empty
(
categoryList
))
{
for
(
PermissionCheckedDTO
.
Category
category
:
categoryList
)
{
for
(
PermissionCheckedDTO
.
Category
category
:
categoryList
)
{
if
(
all
||
deptIds
.
contains
(
category
.
getId
()))
{
if
(
all
||
deptIds
.
contains
(
category
.
getId
()))
{
category
.
setCheck
(
true
);
category
.
setCheck
(
true
);
...
@@ -70,7 +70,7 @@ public class ModulePermissionServiceImpl extends ServiceImpl<ModulePermissionMap
...
@@ -70,7 +70,7 @@ public class ModulePermissionServiceImpl extends ServiceImpl<ModulePermissionMap
}
}
List
<
PermissionCheckedDTO
.
User
>
userList
=
dto
.
getUserList
();
List
<
PermissionCheckedDTO
.
User
>
userList
=
dto
.
getUserList
();
if
(
CollUtil
.
isNotEmpty
(
userIds
)
&&
CollUtil
.
isEmpty
(
userList
))
{
if
(
CollUtil
.
isNotEmpty
(
userIds
)
&&
CollUtil
.
is
Not
Empty
(
userList
))
{
for
(
PermissionCheckedDTO
.
User
user
:
userList
)
{
for
(
PermissionCheckedDTO
.
User
user
:
userList
)
{
if
(
all
||
userIds
.
contains
(
user
.
getId
()))
{
if
(
all
||
userIds
.
contains
(
user
.
getId
()))
{
user
.
setCheck
(
true
);
user
.
setCheck
(
true
);
...
...
src/main/java/com/cmeeting/service/impl/TencentMeetingServiceImpl.java
浏览文件 @
7728651c
...
@@ -274,8 +274,6 @@ public class TencentMeetingServiceImpl extends ServiceImpl<TecentMeetingMapper,T
...
@@ -274,8 +274,6 @@ public class TencentMeetingServiceImpl extends ServiceImpl<TecentMeetingMapper,T
?
weComUserMap
.
get
(
userDTO
.
getWid
()).
getEmailPushAccess
()
:
Boolean
.
FALSE
;
?
weComUserMap
.
get
(
userDTO
.
getWid
()).
getEmailPushAccess
()
:
Boolean
.
FALSE
;
// 查询会议开始和结束时间
// 查询会议开始和结束时间
MeetingInfo
startAndEndTimeByMeetingId
=
tencentMeetingApiUtil
.
getStartAndEndTimeByMeetingId
(
meetingId
);
MeetingInfo
startAndEndTimeByMeetingId
=
tencentMeetingApiUtil
.
getStartAndEndTimeByMeetingId
(
meetingId
);
//会议基本信息保存
//会议基本信息保存
MeetingInfo
meetingItem
=
MeetingInfo
.
builder
().
meetingId
(
meetingId
).
meetingCode
(
meeting
.
getMeetingCode
())
MeetingInfo
meetingItem
=
MeetingInfo
.
builder
().
meetingId
(
meetingId
).
meetingCode
(
meeting
.
getMeetingCode
())
...
@@ -288,7 +286,7 @@ public class TencentMeetingServiceImpl extends ServiceImpl<TecentMeetingMapper,T
...
@@ -288,7 +286,7 @@ public class TencentMeetingServiceImpl extends ServiceImpl<TecentMeetingMapper,T
.
hostUid
(
hostId
)
.
hostUid
(
hostId
)
// .participantUsers(participants.stream()
// .participantUsers(participants.stream()
// .map(item->new String(Base64.getDecoder().decode(item.getUserName()))).distinct().collect(Collectors.joining("、")))
// .map(item->new String(Base64.getDecoder().decode(item.getUserName()))).distinct().collect(Collectors.joining("、")))
.
recordFileId
(
recordFileIdList
.
stream
().
collect
(
Collectors
.
joining
(
","
)
))
.
recordFileId
(
String
.
join
(
","
,
recordFileIdList
))
.
email
(
email
)
.
email
(
email
)
.
build
();
.
build
();
recordFileUrlList
.
add
(
recordFileItem
);
recordFileUrlList
.
add
(
recordFileItem
);
...
@@ -309,7 +307,7 @@ public class TencentMeetingServiceImpl extends ServiceImpl<TecentMeetingMapper,T
...
@@ -309,7 +307,7 @@ public class TencentMeetingServiceImpl extends ServiceImpl<TecentMeetingMapper,T
for
(
Map
.
Entry
<
String
,
List
<
MeetingInfo
>>
entry
:
meetingSaveMap
.
entrySet
())
{
for
(
Map
.
Entry
<
String
,
List
<
MeetingInfo
>>
entry
:
meetingSaveMap
.
entrySet
())
{
MeetingInfo
meetingInfo
=
entry
.
getValue
().
get
(
0
);
MeetingInfo
meetingInfo
=
entry
.
getValue
().
get
(
0
);
List
<
String
>
recordFileIdList
=
entry
.
getValue
().
stream
().
flatMap
(
s
->
Arrays
.
stream
(
s
.
getRecordFileId
().
split
(
","
))).
collect
(
Collectors
.
toList
());
List
<
String
>
recordFileIdList
=
entry
.
getValue
().
stream
().
flatMap
(
s
->
Arrays
.
stream
(
s
.
getRecordFileId
().
split
(
","
))).
collect
(
Collectors
.
toList
());
meetingInfo
.
setRecordFileId
(
recordFileIdList
.
stream
().
collect
(
Collectors
.
joining
(
","
)
));
meetingInfo
.
setRecordFileId
(
String
.
join
(
","
,
recordFileIdList
));
finalSaveList
.
add
(
meetingInfo
);
finalSaveList
.
add
(
meetingInfo
);
meetingFiles
.
add
(
TencentMeetingVO
.
RecordFile
.
builder
()
meetingFiles
.
add
(
TencentMeetingVO
.
RecordFile
.
builder
()
.
meetingId
(
meetingInfo
.
getMeetingId
())
.
meetingId
(
meetingInfo
.
getMeetingId
())
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论