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

48 lines
1008 B
Java

package com.zcloud.service.announcement;
import com.zcloud.entity.Page;
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;
public List<PageData> detailListAll(PageData pd)throws Exception;
/**风速仪名称查询
* @param pd
* @throws Exception
*/
public List<PageData> findByName(PageData pd)throws Exception;
/**批量插入
* @param listPd
* @throws Exception
*/
public void BatchinsertInfo(List<PageData> listPd);
public List<PageData> getInfolistpage(Page page);
}