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

37 lines
607 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.zcloud.service.map;
import com.zcloud.entity.PageData;
import java.util.List;
import java.util.Map;
/**
* 说明:实施地图八项作业
* 作者luoxiaobao
* 时间2022-09-21
* 官网www.zcloudchina.com
*/
public interface MapEightCfdService {
/**动火
* @param pd
* @throws Exception
*/
List<PageData> listAll(PageData pd);
/**动火
* @param pd
* @throws Exception
*/
List<PageData> listAllMeasures(PageData pd);
/**
* 获取其他公司详细数据
* @param pd
* @return
*/
Map<String, Object> getByIdOrder(PageData pd) throws Exception;
}