Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
zrch-risk-39
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
zrch-risk-39
Commits
73cbfed5
提交
73cbfed5
authored
1月 28, 2026
作者:
kxjia
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改bug
上级
500396be
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
38 行增加
和
11 行删除
+38
-11
BaosongTaskAllocController.java
...es/stm/baosong/controller/BaosongTaskAllocController.java
+1
-6
BaosongTaskRecordController.java
...s/stm/baosong/controller/BaosongTaskRecordController.java
+1
-4
BaosongTplController.java
.../modules/stm/baosong/controller/BaosongTplController.java
+36
-0
BaosongTaskAlloc.java
...rg/jeecg/modules/stm/baosong/entity/BaosongTaskAlloc.java
+0
-1
没有找到文件。
zrch-risk-server-39/jeecg-module-system/jeecg-module-stm/src/main/java/org/jeecg/modules/stm/baosong/controller/BaosongTaskAllocController.java
浏览文件 @
73cbfed5
...
...
@@ -6,10 +6,7 @@ import jakarta.servlet.http.HttpServletResponse;
import
org.jeecg.common.api.vo.Result
;
import
org.jeecg.common.system.query.QueryGenerator
;
import
org.jeecg.modules.stm.baosong.entity.BaosongTask
;
import
org.jeecg.modules.stm.baosong.entity.BaosongTaskAlloc
;
import
org.jeecg.modules.stm.baosong.entity.BaosongTpl
;
import
org.jeecg.modules.stm.baosong.entity.BaosongTplItem
;
import
org.jeecg.modules.stm.baosong.entity.*
;
import
org.jeecg.modules.stm.baosong.service.IBaosongTaskAllocService
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
...
...
@@ -270,7 +267,5 @@ public class BaosongTaskAllocController extends JeecgController<BaosongTaskAlloc
if
(
rootItemList
.
size
()>
0
)
{
list
.
addAll
(
0
,
rootItemList
);
}
}
}
zrch-risk-server-39/jeecg-module-system/jeecg-module-stm/src/main/java/org/jeecg/modules/stm/baosong/controller/BaosongTaskRecordController.java
浏览文件 @
73cbfed5
...
...
@@ -248,20 +248,17 @@ public class BaosongTaskRecordController extends JeecgController<BaosongTaskReco
return
Result
.
OK
(
list
);
}
@GetMapping
(
value
=
"/findFilledlist"
)
public
Result
<
List
<
BaosongQuery
>>
findFilledlist
(
BaosongQuery
baosongQuery
,
HttpServletRequest
req
)
{
try
{
System
.
out
.
println
(
baosongQuery
.
getTp
());
List
<
BaosongQuery
>
list
=
baosongTaskRecordService
.
findTaskRecords
(
baosongQuery
);
return
Result
.
OK
(
list
);
}
catch
(
Exception
e
)
{
}
return
null
;
}
}
zrch-risk-server-39/jeecg-module-system/jeecg-module-stm/src/main/java/org/jeecg/modules/stm/baosong/controller/BaosongTplController.java
浏览文件 @
73cbfed5
...
...
@@ -11,6 +11,9 @@ import org.jeecg.common.api.vo.Result;
import
org.jeecg.common.aspect.annotation.AutoLog
;
import
org.jeecg.common.system.base.controller.JeecgController
;
import
org.jeecg.common.system.query.QueryGenerator
;
import
org.jeecg.modules.stm.baosong.entity.BaosongQuery
;
import
org.jeecg.modules.stm.baosong.entity.BaosongTaskAlloc
;
import
org.jeecg.modules.stm.baosong.service.IBaosongTaskAllocService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.web.bind.annotation.*
;
...
...
@@ -48,6 +51,8 @@ public class BaosongTplController extends JeecgController<BaosongTpl, IBaosongTp
private
IBaosongTplService
baosongTplService
;
@Autowired
private
IBaosongTplItemService
baosongTplItemService
;
@Autowired
private
IBaosongTaskAllocService
baosongTaskAllocService
;
@Value
(
value
=
"${jeecg.path.upload}"
)
private
String
uploadpath
;
...
...
@@ -283,4 +288,35 @@ public class BaosongTplController extends JeecgController<BaosongTpl, IBaosongTp
sb
.
append
(
uploadpath
).
append
(
"/baosong/"
).
append
(
"银行业保险业信息科技非现场监管报表填报指南(2024版).pdf"
);
return
sb
.
toString
();
}
@GetMapping
(
value
=
"/findUserRightForTpl"
)
public
Result
<
List
<
BaosongTpl
>>
findUserRightForTpl
(
HttpServletRequest
req
)
{
List
<
BaosongTpl
>
retTplList
=
new
ArrayList
<>();
try
{
String
userId
=
UserUtil
.
getUserId
();
List
<
BaosongTaskAlloc
>
allocTplList
=
baosongTaskAllocService
.
lambdaQuery
()
.
eq
(
BaosongTaskAlloc:
:
getFillUser
,
userId
)
.
list
();
Set
<
Integer
>
tplIdSet
=
new
HashSet
<>();
for
(
BaosongTaskAlloc
alloc
:
allocTplList
)
{
Integer
tplId
=
alloc
.
getTplid
();
if
(
tplId
!=
null
)
{
tplIdSet
.
add
(
tplId
);
}
}
if
(!
tplIdSet
.
isEmpty
())
{
retTplList
=
baosongTplService
.
lambdaQuery
()
.
in
(
BaosongTpl:
:
getId
,
tplIdSet
)
.
list
();
}
return
Result
.
OK
(
retTplList
);
}
catch
(
Exception
e
)
{
log
.
error
(
"查询用户模板权限失败"
,
e
);
return
Result
.
error
(
"查询失败,请稍后重试"
);
}
}
}
zrch-risk-server-39/jeecg-module-system/jeecg-module-stm/src/main/java/org/jeecg/modules/stm/baosong/entity/BaosongTaskAlloc.java
浏览文件 @
73cbfed5
...
...
@@ -67,7 +67,6 @@ public class BaosongTaskAlloc implements Serializable {
/**创建人*/
private
java
.
lang
.
String
createBy
;
@TableField
(
exist
=
false
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论