integrated_traffic/src/main/java/com/zcloud/service/inspectAnnually/InspectAnnuallyService.java

65 lines
1.0 KiB
Java
Raw Normal View History

2024-03-07 11:06:17 +08:00
package com.zcloud.service.inspectAnnually;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import java.util.List;
/**
* -
*/
public interface InspectAnnuallyService {
/**
*
*
* @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 pd
* @throws Exception
*/
public void edit2(PageData pd) throws Exception;
/**
*
*
* @param page
* @throws Exception
*/
public List<PageData> list(Page page) throws Exception;
/**
* id
*
* @param pd
* @throws Exception
*/
public PageData findById(PageData pd) throws Exception;
}