Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
zrch-risk-39
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
zrch-risk-39
Commits
1a98d4a5
提交
1a98d4a5
authored
1月 27, 2026
作者:
kxjia
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改工作流bug
上级
d0598594
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
12 行增加
和
10 行删除
+12
-10
FlowDefinitionController.java
...modules/flowable/controller/FlowDefinitionController.java
+8
-7
FlowTaskController.java
...jeecg/modules/flowable/controller/FlowTaskController.java
+2
-1
application-dev.yml
...jeecg-system-start/src/main/resources/application-dev.yml
+2
-2
没有找到文件。
zrch-risk-server-39/jeecg-module-system/jeecg-module-flowable/src/main/java/org/jeecg/modules/flowable/controller/FlowDefinitionController.java
浏览文件 @
1a98d4a5
...
@@ -175,22 +175,23 @@ public class FlowDefinitionController {
...
@@ -175,22 +175,23 @@ public class FlowDefinitionController {
}
}
@PostMapping
(
"/startByProcDefId"
)
@PostMapping
(
"/startByProcDefId"
)
public
Result
startByProcDefId
(
@RequestParam
(
value
=
"procDefId"
)
String
procDefId
,
public
Result
startByProcDefId
(
@RequestBody
Map
<
String
,
Object
>
variables
)
{
@RequestBody
Map
<
String
,
Object
>
variables
)
{
String
procDefId
=
variables
.
get
(
"procDefId"
).
toString
();
return
flowDefinitionService
.
startProcessInstanceById
(
procDefId
,
variables
);
return
flowDefinitionService
.
startProcessInstanceById
(
procDefId
,
variables
);
}
}
@PostMapping
(
"/startByProcDefKey"
)
@PostMapping
(
"/startByProcDefKey"
)
public
Result
startByProcDefKey
(
@RequestParam
(
value
=
"procDefKey"
)
String
procDefKey
,
public
Result
startByProcDefKey
(
@RequestBody
Map
<
String
,
Object
>
variables
)
{
@RequestBody
Map
<
String
,
Object
>
variables
)
{
String
procDefKey
=
variables
.
get
(
"procDefKey"
).
toString
();
return
flowDefinitionService
.
startProcessInstanceByKey
(
procDefKey
,
variables
);
return
flowDefinitionService
.
startProcessInstanceByKey
(
procDefKey
,
variables
);
}
}
@PostMapping
(
"/startByDataId"
)
@PostMapping
(
"/startByDataId"
)
public
Result
startByDataId
(
@RequestParam
(
value
=
"dataId"
)
String
dataId
,
public
Result
startByDataId
(
@RequestBody
Map
<
String
,
Object
>
variables
)
{
@RequestBody
Map
<
String
,
Object
>
variables
)
{
String
dataId
=
variables
.
get
(
"dataId"
).
toString
();
variables
.
put
(
"dataId"
,
dataId
);
return
flowDefinitionService
.
startProcessInstanceByDataId
(
dataId
,
variables
);
return
flowDefinitionService
.
startProcessInstanceByDataId
(
dataId
,
variables
);
}
}
...
@@ -250,8 +251,8 @@ public class FlowDefinitionController {
...
@@ -250,8 +251,8 @@ public class FlowDefinitionController {
}
}
@PostMapping
(
"/startByDeployId"
)
@PostMapping
(
"/startByDeployId"
)
public
Result
startByDeployId
(
@Request
Param
(
value
=
"deployId"
)
String
deployId
,
public
Result
startByDeployId
(
@Request
Body
Map
<
String
,
Object
>
variables
)
{
@RequestBody
Map
<
String
,
Object
>
variables
)
{
String
deployId
=
variables
.
get
(
"deployId"
).
toString
();
return
flowDefinitionService
.
startProcessInstanceByDeployId
(
deployId
,
variables
);
return
flowDefinitionService
.
startProcessInstanceByDeployId
(
deployId
,
variables
);
}
}
...
...
zrch-risk-server-39/jeecg-module-system/jeecg-module-flowable/src/main/java/org/jeecg/modules/flowable/controller/FlowTaskController.java
浏览文件 @
1a98d4a5
...
@@ -218,7 +218,8 @@ public class FlowTaskController {
...
@@ -218,7 +218,8 @@ public class FlowTaskController {
}
}
@GetMapping
(
value
=
"/flowFormData"
)
@GetMapping
(
value
=
"/flowFormData"
)
public
Result
flowFormData
(
String
deployId
,
public
Result
flowFormData
(
@RequestParam
(
value
=
"deployId"
,
required
=
false
)
String
deployId
,
@RequestParam
(
value
=
"taskId"
,
required
=
false
)
String
taskId
)
@RequestParam
(
value
=
"taskId"
,
required
=
false
)
String
taskId
)
{
{
//按照贾2025-11-11指示,只使用一个一个接口返回所有列数据
//按照贾2025-11-11指示,只使用一个一个接口返回所有列数据
...
...
zrch-risk-server-39/jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml
浏览文件 @
1a98d4a5
...
@@ -151,9 +151,9 @@ spring:
...
@@ -151,9 +151,9 @@ spring:
slow-sql-millis
:
5000
slow-sql-millis
:
5000
datasource
:
datasource
:
master
:
master
:
url
:
jdbc:mysql://
127.0.0.1
:3306/zrch_stm_db_3.9?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
url
:
jdbc:mysql://
47.98.203.68
:3306/zrch_stm_db_3.9?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
username
:
root
username
:
root
password
:
123456
password
:
ZhongRunChangHong/123
driver-class-name
:
com.mysql.cj.jdbc.Driver
driver-class-name
:
com.mysql.cj.jdbc.Driver
# # shardingjdbc数据源
# # shardingjdbc数据源
# sharding-db:
# sharding-db:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论