integrated_traffic/src/main/java/com/zcloud/service/hiddenDangerCheckStandard/CustomService.java

113 lines
2.0 KiB
Java
Raw Normal View History

2024-01-30 16:50:58 +08:00
package com.zcloud.service.hiddenDangerCheckStandard;
2024-01-30 16:00:22 +08:00
2024-01-31 11:59:44 +08:00
import com.zcloud.entity.Page;
2024-01-30 16:00:22 +08:00
import com.zcloud.entity.PageData;
import java.util.List;
/**
*
* luoxiaobao
* 2020-12-30
* www.zcloudchina.com
*/
2024-01-30 16:50:58 +08:00
public interface CustomService {
2024-01-30 16:00:22 +08:00
/**
* @param pd
* @throws Exception
*/
2024-02-01 22:37:47 +08:00
void save(PageData pd)throws Exception;
2024-01-30 16:00:22 +08:00
/**
* @param pd
* @throws Exception
*/
2024-02-01 08:37:20 +08:00
List<PageData> listAll(PageData pd)throws Exception;
2024-01-30 16:00:22 +08:00
2024-01-31 11:59:44 +08:00
/**
* @param page
* @throws Exception
*/
2024-02-01 08:37:20 +08:00
List<PageData> list(Page page)throws Exception;
2024-01-31 11:59:44 +08:00
/**
* @param pd
* @throws Exception
*/
2024-02-01 08:37:20 +08:00
void delete(PageData pd)throws Exception;
2024-01-31 11:59:44 +08:00
/**
* @param pd
* @throws Exception
*/
2024-02-01 08:37:20 +08:00
void remove(PageData pd)throws Exception;
2024-01-31 11:59:44 +08:00
/**
* @param pd
* @throws Exception
*/
2024-02-01 08:37:20 +08:00
void deleted(PageData pd)throws Exception;
2024-01-31 11:59:44 +08:00
/**
* @param pd
* @throws Exception
*/
2024-02-01 08:37:20 +08:00
void enable(PageData pd)throws Exception;
2024-02-03 14:05:34 +08:00
/**
* @param pd
* @throws Exception
*/
public void edit(PageData pd)throws Exception;
public List<PageData> stoplist(Page page)throws Exception;
/**
* * @param pd
* @throws Exception
*/
public List<PageData> recordList(Page page)throws Exception;
2024-02-01 08:37:20 +08:00
/**id
2024-01-31 15:15:23 +08:00
* @param pd
* @throws Exception
*/
PageData findById(PageData pd)throws Exception;
2024-01-31 11:59:44 +08:00
2024-01-31 15:15:23 +08:00
/**
2024-01-31 11:59:44 +08:00
* @param pd
* @throws Exception
*/
2024-01-31 15:15:23 +08:00
List<PageData> getMyCheckList(PageData pd)throws Exception;
2024-02-01 08:37:20 +08:00
/**
* @param page
* @throws Exception
*/
List<PageData> checklistPage(Page page)throws Exception;
/**
*
* @param pd
* @return
*/
2024-02-01 22:37:47 +08:00
int getListCount(PageData pd)throws Exception;
2024-02-01 08:37:20 +08:00
/**
*
* @param pd
* @return
*/
2024-02-01 22:37:47 +08:00
int getWorkedListCount(PageData pd)throws Exception;
2024-02-01 08:37:20 +08:00
/**
* @param page
* @throws Exception
*/
2024-02-01 22:37:47 +08:00
List<PageData> getListByCorplistPage(Page page)throws Exception;
2024-02-03 14:05:34 +08:00
2024-02-04 09:09:25 +08:00
2024-01-30 16:00:22 +08:00
}