mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2025-01-19 13:48:31 +08:00
工作流流程模型管理功能整改完成
This commit is contained in:
parent
88fd5117b1
commit
0bfe67b4b9
4 changed files with 7 additions and 7 deletions
|
@ -46,7 +46,7 @@ public class SkyeyeClassFlowableController {
|
|||
}
|
||||
|
||||
/**
|
||||
* 获取工作流业务对象服务
|
||||
* 获取工作流业务对象服务---common层使用
|
||||
*
|
||||
* @param inputObject 入参以及用户信息等获取对象
|
||||
* @param outputObject 出参以及提示信息的返回值对象
|
||||
|
@ -61,12 +61,12 @@ public class SkyeyeClassFlowableController {
|
|||
}
|
||||
|
||||
/**
|
||||
* 获取所有工作流业务对象服务列表
|
||||
* 获取所有工作流业务对象服务列表---前台使用
|
||||
*
|
||||
* @param inputObject 入参以及用户信息等获取对象
|
||||
* @param outputObject 出参以及提示信息的返回值对象
|
||||
*/
|
||||
@ApiOperation(id = "queryClassFlowableDataList", value = "获取所有工作流业务对象服务列表", method = "GET", allUse = "2")
|
||||
@ApiOperation(id = "queryClassFlowableDataList", value = "获取所有工作流业务对象服务列表", method = "POST", allUse = "2")
|
||||
@ApiImplicitParams(classBean = CommonPageInfo.class)
|
||||
@RequestMapping("/post/SkyeyeClassFlowableController/queryClassFlowableDataList")
|
||||
public void queryClassFlowableDataList(InputObject inputObject, OutputObject outputObject) {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
package com.skyeye.eve.dao;
|
||||
|
||||
import com.github.pagehelper.Page;
|
||||
import com.skyeye.common.entity.CommonPageInfo;
|
||||
import com.skyeye.eve.entity.classflowable.SkyeyeClassFlowableLinkMation;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -19,6 +19,6 @@ import java.util.List;
|
|||
*/
|
||||
public interface SkyeyeClassFlowableDao extends SkyeyeBaseMapper<SkyeyeClassFlowableLinkMation> {
|
||||
|
||||
List<SkyeyeClassFlowableLinkMation> queryClassFlowableDataList(Page pages);
|
||||
List<SkyeyeClassFlowableLinkMation> queryClassFlowableDataList(CommonPageInfo commonPageInfo);
|
||||
|
||||
}
|
||||
|
|
|
@ -113,7 +113,7 @@ public class SkyeyeClassFlowableServiceImpl extends ServiceImpl<SkyeyeClassFlowa
|
|||
public void queryClassFlowableDataList(InputObject inputObject, OutputObject outputObject) {
|
||||
CommonPageInfo commonPageInfo = inputObject.getParams(CommonPageInfo.class);
|
||||
Page pages = PageHelper.startPage(commonPageInfo.getPage(), commonPageInfo.getLimit());
|
||||
List<SkyeyeClassFlowableLinkMation> beans = skyeyeClassFlowableDao.queryClassFlowableDataList(pages);
|
||||
List<SkyeyeClassFlowableLinkMation> beans = skyeyeClassFlowableDao.queryClassFlowableDataList(commonPageInfo);
|
||||
outputObject.setBeans(beans);
|
||||
outputObject.settotal(pages.getTotal());
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
${sqlExtract}
|
||||
</if>
|
||||
<if test="keyword != '' and keyword != null">
|
||||
AND a.serviceName like '%${keyword}%'
|
||||
AND a.service_name like '%${keyword}%'
|
||||
</if>
|
||||
</where>
|
||||
ORDER BY a.create_time DESC
|
||||
|
|
Loading…
Reference in a new issue