qa-prevention-gwj/src/main/java/com/zcloud/service/inspection/SafetyEnvironmentalExplainS...

82 lines
1.6 KiB
Java
Raw Normal View History

2023-11-07 09:32:12 +08:00
package com.zcloud.service.inspection;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import java.util.List;
/**
*
* luoxiaobao
* 2022-06-08
* www.zcloudchina.com
*/
public interface SafetyEnvironmentalExplainService{
/**
*
*
* @param pd
* @return
* @throws Exception
*/
public PageData save(PageData pd)throws Exception;
2023-11-07 09:32:12 +08:00
/**
* @param pd
* @throws Exception
*/
public void delete(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void edit(PageData pd)throws Exception;
/**
* @param page
* @throws Exception
*/
public List<PageData> list(Page page)throws Exception;
/**()
* @param pd
* @throws Exception
*/
public List<PageData> listAll(PageData pd)throws Exception;
/**id
* @param pd
* @throws Exception
*/
public PageData findById(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void deleteAll(PageData pd)throws Exception;
/**(ID)
* @param pd
* @throws Exception
*/
List<PageData> findByIds(PageData pd)throws Exception;
/**ID
* @param pd
* @throws Exception
*/
void deleteByInspection(PageData pd) throws Exception;
List<PageData> findExplainById(PageData pd) throws Exception;
void killAllMessage(PageData explain_condition) throws Exception;
PageData findMessage(PageData explain_condition) throws Exception;
PageData findMessageByTime(PageData explain_condition);
}