Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz4j Spring R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7后台标准模板
iBiz4j Spring R7
提交
f99f80ac
提交
f99f80ac
编写于
5月 19, 2020
作者:
zhouweidong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
权限资源调整
上级
41e1f531
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
30 行增加
和
3 行删除
+30
-3
%ITEM%Resource.java.ftl
...YS_PKGPATH%/%SYSAPI_PKGPATH%/rest/%ITEM%Resource.java.ftl
+30
-3
未找到文件。
SLN/%PUBPRJ%-provider/%PUBPRJ%-provider-%SYSAPI_PKGPATH%/src/main/java/%SYS_PKGPATH%/%SYSAPI_PKGPATH%/rest/%ITEM%Resource.java.ftl
浏览文件 @
f99f80ac
...
...
@@ -19,6 +19,10 @@ TARGET=PSDESERVICEAPI
<#
assign
keyCNLC
=
"_id"
>
<#
assign
deStorageMode
=
"None"
>
<#
if
de
.
getStorageMode
()==
1
><#
assign
deStorageMode
=
"Sql"
><#
elseif
de
.
getStorageMode
()==
2
><#
assign
deStorageMode
=
"NoSQL"
><#
elseif
de
.
getStorageMode
()==
4
><#
assign
deStorageMode
=
"ServiceApi"
></#
if
>
<#
assign
noDEPrefield
=
true
>
<#
if
de
.
getPSDEFieldByPDT
(
'ORGID'
,
true
)??
||
de
.
getPSDEFieldByPDT
(
'ORGSECTORID'
,
true
)??
||
de
.
getPSDEFieldByPDT
(
'CREATEMAN'
,
true
)??
>
<#
assign
noDEPrefield
=
false
>
</#
if
>
package
${
pubPkgCodeName
}.${
itemSysApiCodeNameLC
}.
rest
;
import
java
.
sql
.
Timestamp
;
...
...
@@ -149,7 +153,11 @@ public class ${itemCodeName}Resource {
<#
if
deaction
.
codeName
?
lower_case
==
'create'
>
<#
if
noDEPrefield
>
@
PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','${sys.codeName}:${de.codeName}:${deaction.codeName}:all')"
)
<#
else
>
@
PreAuthorize
(
"hasPermission('','Create',{this.getEntity(),'${deStorageMode}'})"
)
</#
if
>
@
ApiOperation
(
value
=
"${deaction.getLogicName()}"
,
tags
=
{
"${itemCodeName}"
},
notes
=
"${deaction.getLogicName()}"
)
@
RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"${fullPath}"
)
<#
if
de
.
getStorageMode
()==
4
><#
else
>
@
Transactional
</#
if
>
...
...
@@ -159,8 +167,11 @@ public class ${itemCodeName}Resource {
${
itemCodeName
}
DTO
dto
=
${
itemCodeNameLC
}
Mapping
.
toDto
(
domain
);
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
dto
);
}
<#
if
noDEPrefield
>
@
PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','${sys.codeName}:${de.codeName}:${deaction.codeName}:all')"
)
<#
else
>
@
PreAuthorize
(
"hasPermission('','Create',{this.getEntity(),'${deStorageMode}'})"
)
</#
if
>
@
ApiOperation
(
value
=
"createBatch"
,
tags
=
{
"${itemCodeName}"
},
notes
=
"createBatch"
)
@
RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"${fullPath}/batch"
)
public
ResponseEntity
<
Boolean
>
createBatch
(${
etParamsList
})
{
...
...
@@ -169,7 +180,11 @@ public class ${itemCodeName}Resource {
}
<#
elseif
deaction
.
codeName
?
lower_case
==
'update'
>
<#
if
noDEPrefield
>
@
PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','${sys.codeName}:${de.codeName}:${deaction.codeName}:all')"
)
<#
else
>
@
PreAuthorize
(
"hasPermission(#${itemCodeNameLC + keyCNLC},'Update',{this.getEntity(),'${deStorageMode}'})"
)
</#
if
>
@
ApiOperation
(
value
=
"${deaction.getLogicName()}"
,
tags
=
{
"${itemCodeName}"
},
notes
=
"${deaction.getLogicName()}"
)
@
RequestMapping
(
method
=
RequestMethod
.
PUT
,
value
=
"${fullPath}/{${itemCodeNameLC + keyCNLC}}"
)
<#
if
de
.
getStorageMode
()==
4
><#
else
>
@
Transactional
</#
if
>
...
...
@@ -181,7 +196,11 @@ public class ${itemCodeName}Resource {
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
dto
);
}
<#
if
noDEPrefield
>
@
PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','${sys.codeName}:${de.codeName}:${deaction.codeName}:all')"
)
<#
else
>
@
PreAuthorize
(
"hasPermission(#${itemCodeNameLC + keyCNLC},'Update',{this.getEntity(),'${deStorageMode}'})"
)
</#
if
>
@
ApiOperation
(
value
=
"UpdateBatch"
,
tags
=
{
"${itemCodeName}"
},
notes
=
"UpdateBatch"
)
@
RequestMapping
(
method
=
RequestMethod
.
PUT
,
value
=
"${fullPath}/batch"
)
public
ResponseEntity
<
Boolean
>
updateBatch
(${
etParamsList
})
{
...
...
@@ -204,7 +223,11 @@ public class ${itemCodeName}Resource {
}
<#
elseif
deaction
.
codeName
?
lower_case
==
'remove'
>
<#
if
noDEPrefield
>
@
PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','${sys.codeName}:${de.codeName}:${deaction.codeName}:all')"
)
<#
else
>
@
PreAuthorize
(
"hasPermission('Remove',{#${itemCodeNameLC + keyCNLC},{this.getEntity(),'${deStorageMode}'}})"
)
</#
if
>
@
ApiOperation
(
value
=
"${deaction.getLogicName()}"
,
tags
=
{
"${itemCodeName}"
},
notes
=
"${deaction.getLogicName()}"
)
@
RequestMapping
(
method
=
RequestMethod
.
DELETE
,
value
=
"${fullPath}/{${itemCodeNameLC + keyCNLC}}"
)
<#
if
de
.
getStorageMode
()==
4
><#
else
>
@
Transactional
</#
if
>
...
...
@@ -220,7 +243,11 @@ public class ${itemCodeName}Resource {
}
<#
elseif
deaction
.
codeName
?
lower_case
==
'get'
>
<#
if
noDEPrefield
>
@
PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','${sys.codeName}:${de.codeName}:${deaction.codeName}:all')"
)
<#
else
>
@
PreAuthorize
(
"hasPermission(#${itemCodeNameLC + keyCNLC},'Get',{this.getEntity(),'${deStorageMode}'})"
)
</#
if
>
@
ApiOperation
(
value
=
"${deaction.getLogicName()}"
,
tags
=
{
"${itemCodeName}"
},
notes
=
"${deaction.getLogicName()}"
)
@
RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"${fullPath}/{${itemCodeNameLC + keyCNLC}}"
)
public
ResponseEntity
<${
itemCodeName
}
DTO
>
get
(${
idParams
})
{
...
...
@@ -263,7 +290,7 @@ public class ${itemCodeName}Resource {
</#
if
>
<#
elseif
apiMethod
.
getActionType
()==
'FETCH'
>
<#
assign
deds
=
apiMethod
.
getPSDEDataSet
()>
@
PreAuthorize
(
"has
Permission('Get',{#context,'${deds.getCodeName()}',this.getEntity(),'${deStorageMode}'}
)"
)
@
PreAuthorize
(
"has
AnyAuthority('ROLE_SUPERADMIN','${sys.codeName}:${de.codeName}:${deds.codeName}:all'
)"
)
@
ApiOperation
(
value
=
"fetch${deds.getLogicName()}"
,
tags
=
{
"${itemCodeName}"
}
,
notes
=
"fetch${deds.getLogicName()}"
)
@
RequestMapping
(
method
=
RequestMethod
.${
reqMtd
}
,
value
=
"${fullPath}/fetch<#if (deds.getName()=='DEFAULT')>${deds.getCodeName()?lower_case}<#else>${deds.getCodeName()?lower_case}</#if>"
)
public
ResponseEntity
<
List
<<#
if
deds
.
isEnableGroup
()>
HashMap
<#
else
>${
itemCodeName
}
DTO
</#
if
>>>
fetch
<#
if
(
deds
.
getName
()==
'DEFAULT'
)>${
deds
.
getCodeName
()}<#
else
>${
deds
.
getCodeName
()}</#
if
>(${
deCodeName
}
SearchContext
context
)
{
...
...
@@ -286,7 +313,7 @@ public class ${itemCodeName}Resource {
</#
if
>
}
@
PreAuthorize
(
"has
Permission('Get',{#context,'${deds.getCodeName()}',this.getEntity(),'${deStorageMode}'}
)"
)
@
PreAuthorize
(
"has
AnyAuthority('ROLE_SUPERADMIN','${sys.codeName}:${de.codeName}:${deds.codeName}:all'
)"
)
@
ApiOperation
(
value
=
"search${deds.getLogicName()}"
,
tags
=
{
"${itemCodeName}"
}
,
notes
=
"search${deds.getLogicName()}"
)
@
RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"${fullPath}/search<#if (deds.getName()=='DEFAULT')>${deds.getCodeName()?lower_case}<#else>${deds.getCodeName()?lower_case}</#if>"
)
public
ResponseEntity
<
Page
<<#
if
deds
.
isEnableGroup
()>
HashMap
<#
else
>${
itemCodeName
}
DTO
</#
if
>>>
search
<#
if
(
deds
.
getName
()==
'DEFAULT'
)>${
deds
.
getCodeName
()}<#
else
>${
deds
.
getCodeName
()}</#
if
>(@
RequestBody
${
deCodeName
}
SearchContext
context
)
{
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录