All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sany.workflow.demo.service.BusinessDemoService Maven / Gradle / Ivy

There is a newer version: 5.6.4
Show newest version
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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy