Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzuaa
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzuaa
提交
73bdf4b6
提交
73bdf4b6
编写于
1月 04, 2021
作者:
sq3536
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
基础功能角色
上级
35fe8bfc
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
31 行增加
和
21 行删除
+31
-21
SysPSSystemExService.java
...ibizlab/core/extensions/service/SysPSSystemExService.java
+10
-0
SysPSSystemAspect.java
...ibizlab/core/uaa/extensions/aspect/SysPSSystemAspect.java
+21
-21
未找到文件。
ibzuaa-core/src/main/java/cn/ibizlab/core/extensions/service/SysPSSystemExService.java
浏览文件 @
73bdf4b6
...
...
@@ -6,6 +6,7 @@ import cn.ibizlab.core.uaa.domain.SysPermission;
import
cn.ibizlab.core.uaa.extensions.domain.PermissionType
;
import
cn.ibizlab.core.uaa.service.ISysPermissionService
;
import
cn.ibizlab.core.uaa.service.impl.SysPSSystemServiceImpl
;
import
com.baomidou.dynamic.datasource.annotation.DS
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
...
...
@@ -121,6 +122,7 @@ public class SysPSSystemExService extends SysPSSystemServiceImpl {
*/
@Override
@Transactional
@DS
(
"db2"
)
public
SysPSSystem
syncPermission
(
SysPSSystem
system
)
{
if
(
StringUtils
.
isEmpty
(
system
.
getPssystemid
())||
system
.
getSysstructure
()==
null
)
...
...
@@ -156,6 +158,14 @@ public class SysPSSystemExService extends SysPSSystemServiceImpl {
return
system
;
}
@Override
@Transactional
@DS
(
"db2"
)
public
boolean
syncPermissionBatch
(
List
<
SysPSSystem
>
etList
)
{
return
super
.
syncPermissionBatch
(
etList
);
}
private
String
getIds
(
Set
<
String
>
newIds
)
{
String
[]
strIdArr
=
newIds
.
toArray
(
new
String
[
newIds
.
size
()]);
return
"'"
+
String
.
join
(
"','"
,
strIdArr
)
+
"'"
;
...
...
ibzuaa-core/src/main/java/cn/ibizlab/core/uaa/extensions/aspect/SysPSSystemAspect.java
浏览文件 @
73bdf4b6
...
...
@@ -82,26 +82,26 @@ public class SysPSSystemAspect
@After
(
value
=
"execution(* cn.ibizlab.core.uaa.service.ISysPSSystemService.createBatch(..))"
)
public
void
create
(
JoinPoint
point
)
throws
Exception
{
savePermission
(
point
);
}
@After
(
value
=
"execution(* cn.ibizlab.core.uaa.service.ISysPSSystemService.updateBatch(..))"
)
public
void
update
(
JoinPoint
point
)
throws
Exception
{
savePermission
(
point
);
}
@After
(
value
=
"execution(* cn.ibizlab.core.uaa.service.ISysPSSystemService.saveBatch(..))"
)
public
void
save
(
JoinPoint
point
)
throws
Exception
{
savePermission
(
point
);
}
private
void
savePermission
(
JoinPoint
point
)
{
Object
[]
args
=
point
.
getArgs
();
if
(
args
.
length
>
0
)
{
Object
obj
=
args
[
0
];
if
(
obj
instanceof
List
)
((
List
<
SysPSSystem
>)
obj
).
forEach
(
system
->
sysPSSystemService
.
syncPermission
(
system
));
}
}
//
@After(value = "execution(* cn.ibizlab.core.uaa.service.ISysPSSystemService.createBatch(..))")
//
public void create(JoinPoint point) throws Exception {
//
savePermission(point);
//
}
//
@After(value = "execution(* cn.ibizlab.core.uaa.service.ISysPSSystemService.updateBatch(..))")
//
public void update(JoinPoint point) throws Exception {
//
savePermission(point);
//
}
//
@After(value = "execution(* cn.ibizlab.core.uaa.service.ISysPSSystemService.saveBatch(..))")
//
public void save(JoinPoint point) throws Exception {
//
savePermission(point);
//
}
//
private void savePermission(JoinPoint point)
//
{
//
Object[] args = point.getArgs();
//
if (args.length > 0) {
//
Object obj = args[0];
//
if (obj instanceof List)
//
((List<SysPSSystem>) obj).forEach(system -> sysPSSystemService.syncPermission(system));
//
}
//
}
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录