com.sany.workflow.demo.service.BusinessDemoService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdp-workflow-demo Show documentation
Show all versions of pdp-workflow-demo Show documentation
bboss public development platform base on bboss.
package com.sany.workflow.demo.service;
import java.util.List;
import com.frameworkset.util.ListInfo;
import com.sany.workflow.business.entity.HisTaskInfo;
import com.sany.workflow.demo.entity.BusinessDemoTreeEntity;
import com.sany.workflow.demo.entity.ListData;
import com.sany.workflow.demo.entity.PageData;
/**
* 任务管理业务接口
*
* @todo
* @author tanx
* @date 2014年5月27日
*
*/
public interface BusinessDemoService {
/**
* demo演示实例获取业务单数据
*
* @param processKey
* @param offset
* @param pagesize
* @return
* @throws Exception
* 2014年10月13日
*/
public ListInfo queryDemoData(String processKey, String businessKey,
long offset, int pagesize) throws Exception;
public boolean hasSonNodes(String parentID);
public List getSonNodes(String parentID);
public PageData getBusinessKeyList(String businessKey, int limit)
throws Exception;
public List getBusinessKeyList(String businessKey)
throws Exception;
public List getHisTaskInfo(String businessKey,
boolean filterLog) throws Exception;
}