Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibztask
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibztask
提交
8ef656d5
提交
8ef656d5
编写于
4年前
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ibiz4j 发布系统代码
上级
796fa96c
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
8 行增加
和
8 行删除
+8
-8
JobsInfoResource.java
...i/src/main/java/cn/ibizlab/api/rest/JobsInfoResource.java
+2
-2
JobsLockResource.java
...i/src/main/java/cn/ibizlab/api/rest/JobsLockResource.java
+2
-2
JobsLogResource.java
...pi/src/main/java/cn/ibizlab/api/rest/JobsLogResource.java
+2
-2
JobsRegistryResource.java
...c/main/java/cn/ibizlab/api/rest/JobsRegistryResource.java
+2
-2
未找到文件。
ibztask-provider/ibztask-provider-api/src/main/java/cn/ibizlab/api/rest/JobsInfoResource.java
浏览文件 @
8ef656d5
...
@@ -174,7 +174,7 @@ public class JobsInfoResource {
...
@@ -174,7 +174,7 @@ public class JobsInfoResource {
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
jobsinfodto
);
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
jobsinfodto
);
}
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsInfo-searchDefault-all')
and hasPermission(#context,'ibztask-JobsInfo-Get')
"
)
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsInfo-searchDefault-all')"
)
@ApiOperation
(
value
=
"获取DEFAULT"
,
tags
=
{
"任务信息"
}
,
notes
=
"获取DEFAULT"
)
@ApiOperation
(
value
=
"获取DEFAULT"
,
tags
=
{
"任务信息"
}
,
notes
=
"获取DEFAULT"
)
@RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"/jobsinfos/fetchdefault"
)
@RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"/jobsinfos/fetchdefault"
)
public
ResponseEntity
<
List
<
JobsInfoDTO
>>
fetchDefault
(
JobsInfoSearchContext
context
)
{
public
ResponseEntity
<
List
<
JobsInfoDTO
>>
fetchDefault
(
JobsInfoSearchContext
context
)
{
...
@@ -187,7 +187,7 @@ public class JobsInfoResource {
...
@@ -187,7 +187,7 @@ public class JobsInfoResource {
.
body
(
list
);
.
body
(
list
);
}
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsInfo-searchDefault-all')
and hasPermission(#context,'ibztask-JobsInfo-Get')
"
)
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsInfo-searchDefault-all')"
)
@ApiOperation
(
value
=
"查询DEFAULT"
,
tags
=
{
"任务信息"
}
,
notes
=
"查询DEFAULT"
)
@ApiOperation
(
value
=
"查询DEFAULT"
,
tags
=
{
"任务信息"
}
,
notes
=
"查询DEFAULT"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/jobsinfos/searchdefault"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/jobsinfos/searchdefault"
)
public
ResponseEntity
<
Page
<
JobsInfoDTO
>>
searchDefault
(
@RequestBody
JobsInfoSearchContext
context
)
{
public
ResponseEntity
<
Page
<
JobsInfoDTO
>>
searchDefault
(
@RequestBody
JobsInfoSearchContext
context
)
{
...
...
This diff is collapsed.
Click to expand it.
ibztask-provider/ibztask-provider-api/src/main/java/cn/ibizlab/api/rest/JobsLockResource.java
浏览文件 @
8ef656d5
...
@@ -138,7 +138,7 @@ public class JobsLockResource {
...
@@ -138,7 +138,7 @@ public class JobsLockResource {
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
true
);
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
true
);
}
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsLock-searchDefault-all')
and hasPermission(#context,'ibztask-JobsLock-Get')
"
)
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsLock-searchDefault-all')"
)
@ApiOperation
(
value
=
"获取DEFAULT"
,
tags
=
{
"任务锁"
}
,
notes
=
"获取DEFAULT"
)
@ApiOperation
(
value
=
"获取DEFAULT"
,
tags
=
{
"任务锁"
}
,
notes
=
"获取DEFAULT"
)
@RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"/jobslocks/fetchdefault"
)
@RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"/jobslocks/fetchdefault"
)
public
ResponseEntity
<
List
<
JobsLockDTO
>>
fetchDefault
(
JobsLockSearchContext
context
)
{
public
ResponseEntity
<
List
<
JobsLockDTO
>>
fetchDefault
(
JobsLockSearchContext
context
)
{
...
@@ -151,7 +151,7 @@ public class JobsLockResource {
...
@@ -151,7 +151,7 @@ public class JobsLockResource {
.
body
(
list
);
.
body
(
list
);
}
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsLock-searchDefault-all')
and hasPermission(#context,'ibztask-JobsLock-Get')
"
)
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsLock-searchDefault-all')"
)
@ApiOperation
(
value
=
"查询DEFAULT"
,
tags
=
{
"任务锁"
}
,
notes
=
"查询DEFAULT"
)
@ApiOperation
(
value
=
"查询DEFAULT"
,
tags
=
{
"任务锁"
}
,
notes
=
"查询DEFAULT"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/jobslocks/searchdefault"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/jobslocks/searchdefault"
)
public
ResponseEntity
<
Page
<
JobsLockDTO
>>
searchDefault
(
@RequestBody
JobsLockSearchContext
context
)
{
public
ResponseEntity
<
Page
<
JobsLockDTO
>>
searchDefault
(
@RequestBody
JobsLockSearchContext
context
)
{
...
...
This diff is collapsed.
Click to expand it.
ibztask-provider/ibztask-provider-api/src/main/java/cn/ibizlab/api/rest/JobsLogResource.java
浏览文件 @
8ef656d5
...
@@ -138,7 +138,7 @@ public class JobsLogResource {
...
@@ -138,7 +138,7 @@ public class JobsLogResource {
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
true
);
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
true
);
}
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsLog-searchDefault-all')
and hasPermission(#context,'ibztask-JobsLog-Get')
"
)
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsLog-searchDefault-all')"
)
@ApiOperation
(
value
=
"获取DEFAULT"
,
tags
=
{
"任务调度日志"
}
,
notes
=
"获取DEFAULT"
)
@ApiOperation
(
value
=
"获取DEFAULT"
,
tags
=
{
"任务调度日志"
}
,
notes
=
"获取DEFAULT"
)
@RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"/jobslogs/fetchdefault"
)
@RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"/jobslogs/fetchdefault"
)
public
ResponseEntity
<
List
<
JobsLogDTO
>>
fetchDefault
(
JobsLogSearchContext
context
)
{
public
ResponseEntity
<
List
<
JobsLogDTO
>>
fetchDefault
(
JobsLogSearchContext
context
)
{
...
@@ -151,7 +151,7 @@ public class JobsLogResource {
...
@@ -151,7 +151,7 @@ public class JobsLogResource {
.
body
(
list
);
.
body
(
list
);
}
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsLog-searchDefault-all')
and hasPermission(#context,'ibztask-JobsLog-Get')
"
)
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsLog-searchDefault-all')"
)
@ApiOperation
(
value
=
"查询DEFAULT"
,
tags
=
{
"任务调度日志"
}
,
notes
=
"查询DEFAULT"
)
@ApiOperation
(
value
=
"查询DEFAULT"
,
tags
=
{
"任务调度日志"
}
,
notes
=
"查询DEFAULT"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/jobslogs/searchdefault"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/jobslogs/searchdefault"
)
public
ResponseEntity
<
Page
<
JobsLogDTO
>>
searchDefault
(
@RequestBody
JobsLogSearchContext
context
)
{
public
ResponseEntity
<
Page
<
JobsLogDTO
>>
searchDefault
(
@RequestBody
JobsLogSearchContext
context
)
{
...
...
This diff is collapsed.
Click to expand it.
ibztask-provider/ibztask-provider-api/src/main/java/cn/ibizlab/api/rest/JobsRegistryResource.java
浏览文件 @
8ef656d5
...
@@ -138,7 +138,7 @@ public class JobsRegistryResource {
...
@@ -138,7 +138,7 @@ public class JobsRegistryResource {
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
true
);
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
true
);
}
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsRegistry-searchDefault-all')
and hasPermission(#context,'ibztask-JobsRegistry-Get')
"
)
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsRegistry-searchDefault-all')"
)
@ApiOperation
(
value
=
"获取DEFAULT"
,
tags
=
{
"任务注册信息"
}
,
notes
=
"获取DEFAULT"
)
@ApiOperation
(
value
=
"获取DEFAULT"
,
tags
=
{
"任务注册信息"
}
,
notes
=
"获取DEFAULT"
)
@RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"/jobsregistries/fetchdefault"
)
@RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"/jobsregistries/fetchdefault"
)
public
ResponseEntity
<
List
<
JobsRegistryDTO
>>
fetchDefault
(
JobsRegistrySearchContext
context
)
{
public
ResponseEntity
<
List
<
JobsRegistryDTO
>>
fetchDefault
(
JobsRegistrySearchContext
context
)
{
...
@@ -151,7 +151,7 @@ public class JobsRegistryResource {
...
@@ -151,7 +151,7 @@ public class JobsRegistryResource {
.
body
(
list
);
.
body
(
list
);
}
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsRegistry-searchDefault-all')
and hasPermission(#context,'ibztask-JobsRegistry-Get')
"
)
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibztask-JobsRegistry-searchDefault-all')"
)
@ApiOperation
(
value
=
"查询DEFAULT"
,
tags
=
{
"任务注册信息"
}
,
notes
=
"查询DEFAULT"
)
@ApiOperation
(
value
=
"查询DEFAULT"
,
tags
=
{
"任务注册信息"
}
,
notes
=
"查询DEFAULT"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/jobsregistries/searchdefault"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/jobsregistries/searchdefault"
)
public
ResponseEntity
<
Page
<
JobsRegistryDTO
>>
searchDefault
(
@RequestBody
JobsRegistrySearchContext
context
)
{
public
ResponseEntity
<
Page
<
JobsRegistryDTO
>>
searchDefault
(
@RequestBody
JobsRegistrySearchContext
context
)
{
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录