qa-prevention-gwj/src/main/java/com/zcloud/service/map/MeteorologicalinfoService.java

107 lines
2.3 KiB
Java
Raw Normal View History

2024-01-02 14:12:40 +08:00
package com.zcloud.service.map;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import com.zcloud.service.map.util.ReturnMap;
import java.util.List;
/**
*
* luoxiaobao
* 2021-05-10
* www.zcloudchina.com
*/
public interface MeteorologicalinfoService {
/**
* @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;
public void savePosition(PageData pd)throws Exception;
public void editIsShowBycorpinfoid(PageData pd)throws Exception;
public void editIsShow(PageData pd)throws Exception;
/**
* @param page
* @throws Exception
*/
public List<PageData> list(Page page)throws Exception;
/**
* @throws Exception
*/
public PageData listbymeteorological(PageData pd)throws Exception;
/**()
* @param pd
* @throws Exception
*/
public List<PageData> listBo(PageData pd)throws Exception;
/**
* @param page
* @throws Exception
*/
public List<PageData> listbyinfo(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;
/**
* @param ArrayDATA_IDS
* @throws Exception
*/
public void deleteAll(String[] ArrayDATA_IDS)throws Exception;
public PageData findByCode(PageData video)throws Exception;
public List<PageData> listAllForMap(PageData pd)throws Exception;
public List<PageData> getPointsInfo(PageData pd)throws Exception;
/**
* @param list
* @throws Exception
*/
ReturnMap tongbuMeteorologicalinfo(List<PageData> list) throws Exception;
/**
* @param list
* @throws Exception
*/
Integer saveMeteorologicalinfo(List<PageData> list);
/**
* @param pageData
* @throws Exception
*/
Integer updateMeteorologicalinfo(PageData pageData);
/**
* @throws Exception
*/
public PageData listbymeteorologicalByCorpinfoId(PageData pd)throws Exception;
2024-01-02 14:12:40 +08:00
}