Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzwf
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzwf
提交
464b5fca
提交
464b5fca
编写于
8月 31, 2021
作者:
test_0805_001
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
统一代办
上级
c3ae78b1
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
57 行增加
和
81 行删除
+57
-81
WFTaskExService.java
...a/cn/ibizlab/core/extensions/service/WFTaskExService.java
+57
-0
WFTaskExService.java
...lab/core/workflow/extensions/service/WFTaskExService.java
+0
-81
未找到文件。
ibzwf-core/src/main/java/cn/ibizlab/core/extensions/service/WFTaskExService.java
浏览文件 @
464b5fca
package
cn
.
ibizlab
.
core
.
extensions
.
service
;
package
cn
.
ibizlab
.
core
.
extensions
.
service
;
import
cn.ibizlab.core.workflow.filter.WFTaskSearchContext
;
import
cn.ibizlab.core.workflow.mapper.WFCoreMapper
;
import
cn.ibizlab.core.workflow.service.impl.WFTaskServiceImpl
;
import
cn.ibizlab.core.workflow.service.impl.WFTaskServiceImpl
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
cn.ibizlab.core.workflow.domain.WFTask
;
import
cn.ibizlab.core.workflow.domain.WFTask
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.data.domain.Page
;
import
org.springframework.data.domain.PageImpl
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.context.annotation.Primary
;
import
org.springframework.context.annotation.Primary
;
...
@@ -16,6 +21,8 @@ import java.util.*;
...
@@ -16,6 +21,8 @@ import java.util.*;
@Service
(
"WFTaskExService"
)
@Service
(
"WFTaskExService"
)
public
class
WFTaskExService
extends
WFTaskServiceImpl
{
public
class
WFTaskExService
extends
WFTaskServiceImpl
{
@Autowired
private
WFCoreMapper
wfCoreMapper
;
/**
/**
* [UserCustom:用户自定义] 行为扩展
* [UserCustom:用户自定义] 行为扩展
...
@@ -27,5 +34,55 @@ public class WFTaskExService extends WFTaskServiceImpl {
...
@@ -27,5 +34,55 @@ public class WFTaskExService extends WFTaskServiceImpl {
public
WFTask
userCustom
(
WFTask
et
)
{
public
WFTask
userCustom
(
WFTask
et
)
{
return
super
.
userCustom
(
et
);
return
super
.
userCustom
(
et
);
}
}
/**
* 查询集合 DEFAULT
*/
@Override
public
Page
<
WFTask
>
searchDefault
(
WFTaskSearchContext
context
)
{
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
pagination
.
Page
<
WFTask
>
pages
=
wfCoreMapper
.
searchMyTask
(
context
.
getPages
(),
context
,
context
.
getSelectCond
());
return
new
PageImpl
<
WFTask
>(
pages
.
getRecords
(),
context
.
getPageable
(),
pages
.
getTotal
());
}
/**
* 查询集合 已办任务
*/
@Override
public
Page
<
WFTask
>
searchDoneTask
(
WFTaskSearchContext
context
)
{
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
pagination
.
Page
<
WFTask
>
pages
=
wfCoreMapper
.
searchDoneTask
(
context
.
getPages
(),
context
,
context
.
getSelectCond
());
return
new
PageImpl
<
WFTask
>(
pages
.
getRecords
(),
context
.
getPageable
(),
pages
.
getTotal
());
}
/**
* 查询集合 办结任务
*/
@Override
public
Page
<
WFTask
>
searchFinishTask
(
WFTaskSearchContext
context
)
{
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
pagination
.
Page
<
WFTask
>
pages
=
wfCoreMapper
.
searchFinishTask
(
context
.
getPages
(),
context
,
context
.
getSelectCond
());
return
new
PageImpl
<
WFTask
>(
pages
.
getRecords
(),
context
.
getPageable
(),
pages
.
getTotal
());
}
/**
* 查询集合 待办任务
*/
@Override
public
Page
<
WFTask
>
searchTodoTask
(
WFTaskSearchContext
context
)
{
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
pagination
.
Page
<
WFTask
>
pages
=
wfCoreMapper
.
searchMyTask
(
context
.
getPages
(),
context
,
context
.
getSelectCond
());
return
new
PageImpl
<
WFTask
>(
pages
.
getRecords
(),
context
.
getPageable
(),
pages
.
getTotal
());
}
/**
* 查询集合 待阅任务
*/
@Override
public
Page
<
WFTask
>
searchToreadTask
(
WFTaskSearchContext
context
)
{
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
pagination
.
Page
<
WFTask
>
pages
=
wfCoreMapper
.
searchUnReadTask
(
context
.
getPages
(),
context
,
context
.
getSelectCond
());
return
new
PageImpl
<
WFTask
>(
pages
.
getRecords
(),
context
.
getPageable
(),
pages
.
getTotal
());
}
}
}
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/extensions/service/WFTaskExService.java
已删除
100644 → 0
浏览文件 @
c3ae78b1
package
cn
.
ibizlab
.
core
.
workflow
.
extensions
.
service
;
import
cn.ibizlab.core.workflow.domain.WFTask
;
import
cn.ibizlab.core.workflow.filter.WFTaskSearchContext
;
import
cn.ibizlab.core.workflow.mapper.WFCoreMapper
;
import
cn.ibizlab.core.workflow.service.impl.WFTaskServiceImpl
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.context.annotation.Primary
;
import
org.springframework.data.domain.Page
;
import
org.springframework.data.domain.PageImpl
;
import
org.springframework.stereotype.Service
;
/**
* 实体[工作流任务] 无存储服务对象接口实现 自定义
*/
@Slf4j
@Primary
@Service
public
class
WFTaskExService
extends
WFTaskServiceImpl
{
@Autowired
private
WFCoreMapper
wfCoreMapper
;
/**
* 查询集合 DEFAULT
*/
@Override
public
Page
<
WFTask
>
searchDefault
(
WFTaskSearchContext
context
)
{
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
pagination
.
Page
<
WFTask
>
pages
=
wfCoreMapper
.
searchMyTask
(
context
.
getPages
(),
context
,
context
.
getSelectCond
());
return
new
PageImpl
<
WFTask
>(
pages
.
getRecords
(),
context
.
getPageable
(),
pages
.
getTotal
());
}
/**
* 查询集合 已办任务
*/
@Override
public
Page
<
WFTask
>
searchDoneTask
(
WFTaskSearchContext
context
)
{
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
pagination
.
Page
<
WFTask
>
pages
=
wfCoreMapper
.
searchDoneTask
(
context
.
getPages
(),
context
,
context
.
getSelectCond
());
return
new
PageImpl
<
WFTask
>(
pages
.
getRecords
(),
context
.
getPageable
(),
pages
.
getTotal
());
}
/**
* 查询集合 办结任务
*/
@Override
public
Page
<
WFTask
>
searchFinishTask
(
WFTaskSearchContext
context
)
{
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
pagination
.
Page
<
WFTask
>
pages
=
wfCoreMapper
.
searchFinishTask
(
context
.
getPages
(),
context
,
context
.
getSelectCond
());
return
new
PageImpl
<
WFTask
>(
pages
.
getRecords
(),
context
.
getPageable
(),
pages
.
getTotal
());
}
/**
* 查询集合 待办任务
*/
@Override
public
Page
<
WFTask
>
searchTodoTask
(
WFTaskSearchContext
context
)
{
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
pagination
.
Page
<
WFTask
>
pages
=
wfCoreMapper
.
searchMyTask
(
context
.
getPages
(),
context
,
context
.
getSelectCond
());
return
new
PageImpl
<
WFTask
>(
pages
.
getRecords
(),
context
.
getPageable
(),
pages
.
getTotal
());
}
/**
* 查询集合 待阅任务
*/
@Override
public
Page
<
WFTask
>
searchToreadTask
(
WFTaskSearchContext
context
)
{
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
pagination
.
Page
<
WFTask
>
pages
=
wfCoreMapper
.
searchUnReadTask
(
context
.
getPages
(),
context
,
context
.
getSelectCond
());
return
new
PageImpl
<
WFTask
>(
pages
.
getRecords
(),
context
.
getPageable
(),
pages
.
getTotal
());
}
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录