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

91 lines
1.7 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 SafetyEnvironmentalInspectorService{
/**
* @param pd
* @throws Exception
*/
public void save(PageData pd)throws Exception;
/**
* @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;
/**InspectionId
* @param pd
* @throws Exception
*/
public PageData findByInspectionId(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;
/**
*
* @param pd
*/
2024-01-21 18:24:28 +08:00
PageData verify(PageData pd)throws Exception;
2023-11-07 09:32:12 +08:00
/**ID
* @param pd
* @throws Exception
*/
void deleteByInspection(PageData pd) throws Exception;
/**
* @param pd
* @throws Exception
*/
public PageData confirmCount (PageData pd)throws Exception;
PageData countHome(PageData pd)throws Exception;
}