qa-prevention-gwj/src/main/java/com/zcloud/service/act/RuprocdefService.java

52 lines
1.1 KiB
Java
Raw Normal View History

2023-11-07 09:32:12 +08:00
package com.zcloud.service.act;
import java.util.List;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
/**
*
* luoxiaobao
* www.qdkjchina.com
*/
public interface RuprocdefService {
/** or
* @param page
* @throws Exception
*/
public List<PageData> list(Page page)throws Exception;
/**
* @param page
* @throws Exception
*/
public List<PageData> varList(PageData pd)throws Exception;
/**
* @param page
* @throws Exception
*/
public List<PageData> hiTaskList(PageData pd)throws Exception;
/**
* @param page
* @throws Exception
*/
public List<PageData> hitasklist(Page page)throws Exception;
/**or()
* @param pd
* @throws Exception
*/
public void onoffTask(PageData pd)throws Exception;
/**or()
* @param pd
* @throws Exception
*/
public void onoffAllTask(PageData pd)throws Exception;
}