45 lines
813 B
Java
45 lines
813 B
Java
package com.zcloud.mapper.datasource.anemometer;
|
|
|
|
import com.zcloud.entity.PageData;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author zy
|
|
* @date 2024/1/16 19:35
|
|
*/
|
|
public interface AnemometerLocalMapper {
|
|
|
|
/**新增
|
|
* @param pd
|
|
* @throws Exception
|
|
*/
|
|
void add(PageData pd)throws Exception;
|
|
|
|
/**修改
|
|
* @param pd
|
|
* @throws Exception
|
|
*/
|
|
void edit(PageData pd)throws Exception;
|
|
|
|
/**列表(全部)
|
|
* @param pd
|
|
* @throws Exception
|
|
*/
|
|
List<PageData> listAll(PageData pd)throws Exception;
|
|
|
|
/**风速仪名称查询
|
|
* @param pd
|
|
* @throws Exception
|
|
*/
|
|
List<PageData> findByName(PageData pd)throws Exception;
|
|
|
|
/**批量插入
|
|
* @param listPd
|
|
* @throws Exception
|
|
*/
|
|
void BatchinsertInfo(List<PageData> listPd);
|
|
|
|
|
|
}
|