qa-prevention-gwj/src/main/java/com/zcloud/service/announcement/AnemometerLocalService.java

45 lines
922 B
Java
Raw Normal View History

2024-02-06 11:02:25 +08:00
package com.zcloud.service.announcement;
import com.zcloud.entity.PageData;
import java.util.List;
/**
*
* @author zy
* @date 2024/1/16 19:39
*/
public interface AnemometerLocalService {
/**
* @param pd
* @throws Exception
*/
public void add(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void edit(PageData pd)throws Exception;
/**()
* @param pd
* @throws Exception
*/
public List<PageData> listAll(PageData pd)throws Exception;
2024-06-03 10:40:36 +08:00
public List<PageData> detailListAll(PageData pd)throws Exception;
2024-02-06 11:02:25 +08:00
/**
* @param pd
* @throws Exception
*/
public List<PageData> findByName(PageData pd)throws Exception;
/**
* @param listPd
* @throws Exception
*/
public void BatchinsertInfo(List<PageData> listPd);
}