Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz4j Spring R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7后台标准模板
iBiz4j Spring R7
提交
a1ef8a79
提交
a1ef8a79
编写于
5月 08, 2021
作者:
zhouweidong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
流程中数据权限检查
上级
edca1c5b
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
2 行增加
和
26 行删除
+2
-26
IBZWFFallback.java.ftl
...ain/java/%SYS_PKGPATH%/util/client/IBZWFFallback.java.ftl
+0
-13
IBZWFFeignClient.java.ftl
.../java/%SYS_PKGPATH%/util/client/IBZWFFeignClient.java.ftl
+2
-13
未找到文件。
SLN/%PUBPRJ%-util/src/main/java/%SYS_PKGPATH%/util/client/IBZWFFallback.java.ftl
浏览文件 @
a1ef8a79
<#
ibiztemplate
>
TARGET
=
PSSYSTEM
</#
ibiztemplate
>
<#
assign
isDynaSys
=
false
>
<#
if
sys
.
getAllPSSystemModules
()??>
<#
list
sys
.
getAllPSSystemModules
()
as
module
>
<#
if
module
.
getDynaInstMode
()??
&&
(
module
.
getDynaInstMode
()?
c
==
'1'
||
module
.
getDynaInstMode
()?
c
==
'2'
)>
<#
assign
isDynaSys
=
true
>
<#
break
>
</#
if
>
</#
list
>
</#
if
>
package
${
pub
.
getPKGCodeName
()}.
util
.
client
;
import
org
.
springframework
.
stereotype
.
Component
;
import
com
.
alibaba
.
fastjson
.
JSONObject
;
import
java
.
util
.*;
<#
if
isDynaSys
>
import
java
.
io
.
Serializable
;
</#
if
>
@
Component
public
class
IBZWFFallback
implements
IBZWFFeignClient
{
...
...
@@ -41,7 +30,6 @@ public class IBZWFFallback implements IBZWFFeignClient {
public
JSONObject
wfstart
(
String
system
,
String
appname
,
String
entity
,
String
businessKey
,
JSONObject
instance
)
{
return
null
;
}
<#
if
isDynaSys
>
@
Override
public
Map
<
String
,
Map
<
String
,
Object
>>
getTask
(
String
system
,
String
userId
,
String
entity
,
String
instTag
,
String
instTag2
,
String
taskType
)
{
...
...
@@ -58,5 +46,4 @@ public class IBZWFFallback implements IBZWFFeignClient {
return
null
;
}
</#
if
>
}
SLN/%PUBPRJ%-util/src/main/java/%SYS_PKGPATH%/util/client/IBZWFFeignClient.java.ftl
浏览文件 @
a1ef8a79
<#
ibiztemplate
>
TARGET
=
PSSYSTEM
</#
ibiztemplate
>
<#
assign
isDynaSys
=
false
>
<#
if
sys
.
getAllPSSystemModules
()??>
<#
list
sys
.
getAllPSSystemModules
()
as
module
>
<#
if
module
.
getDynaInstMode
()??
&&
(
module
.
getDynaInstMode
()?
c
==
'1'
||
module
.
getDynaInstMode
()?
c
==
'2'
)>
<#
assign
isDynaSys
=
true
>
<#
break
>
</#
if
>
</#
list
>
</#
if
>
package
${
pub
.
getPKGCodeName
()}.
util
.
client
;
import
org
.
springframework
.
cloud
.
openfeign
.
FeignClient
;
import
org
.
springframework
.
web
.
bind
.
annotation
.*;
import
com
.
alibaba
.
fastjson
.
JSONObject
;
import
java
.
util
.*;
<#
if
isDynaSys
>
import
java
.
io
.
Serializable
;
</#
if
>
@
FeignClient
(
value
=
"${r'${ibiz.ref.service.wf:ibzwf-api}'}"
,
contextId
=
"wf"
,
fallback
=
IBZWFFallback
.
class
)
public
interface
IBZWFFeignClient
...
...
@@ -40,7 +29,7 @@ public interface IBZWFFeignClient
@
PathVariable
(
"entity"
)
String
entity
,
@
PathVariable
(
"businessKey"
)
String
businessKey
,
@
RequestBody
JSONObject
instance
);
<#
if
isDynaSys
>
<#
--<#
if
isDynaSys
>--
>
@
RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/{system}-user-{userId}/{insttag}/{insttag2}/{entity}/tasks"
)
Map
<
String
,
Map
<
String
,
Object
>>
getTask
(@
PathVariable
(
"system"
)
String
system
,
@
PathVariable
(
"userId"
)
String
userId
,
@
PathVariable
(
"entity"
)
String
entity
,
@
PathVariable
(
"insttag"
)
String
instTag
,
@
PathVariable
(
"insttag2"
)
String
instTag2
,
@
RequestParam
(
"srfwf"
)
String
taskType
);
...
...
@@ -52,5 +41,5 @@ public interface IBZWFFeignClient
@
RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"/{system}/{entity}/{businessKey}/dataaccessmode"
)
Integer
getDataAccessMode
(@
PathVariable
(
"system"
)
String
system
,
@
PathVariable
(
"entity"
)
String
entity
,
@
PathVariable
(
"businessKey"
)
Serializable
businessKey
);
<
/#
if
>
<
#--</#
if
>--
>
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录