forked from rongchao/epmet-cloud-rizhao
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
664 B
31 lines
664 B
package com.epmet.service;
|
|
|
|
import com.epmet.commons.tools.utils.Result;
|
|
import com.epmet.dto.form.MapInfoFormDTO;
|
|
import com.epmet.dto.result.MapInfoResultDTO;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 地图信息
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-06-20
|
|
*/
|
|
public interface IcPointAppService {
|
|
|
|
/**
|
|
* 根据地点类型获取地图数据
|
|
* @param formDTO
|
|
* @return
|
|
*/
|
|
Result<List<MapInfoResultDTO>> getMapInfoByPointType(MapInfoFormDTO formDTO);
|
|
|
|
/**
|
|
* Desc: 核酸监测点启用禁用
|
|
* @param id
|
|
* @author zxc
|
|
* @date 2022/9/6 16:39
|
|
*/
|
|
void enableOrDisabled(String id);
|
|
}
|
|
|