| | |
| | | package com.ld.igds.common.mapper; |
| | | |
| | | import com.ld.igds.common.dto.PosDto; |
| | | import com.ld.igds.data.BaseParam; |
| | | import com.ld.igds.data.Page; |
| | | import com.ld.igds.models.DicArea; |
| | | import com.ld.igds.models.DicSlogan; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | * 字典相关的核心处理 |
| | | * |
| | | * @author jiazx |
| | | * |
| | | */ |
| | | public interface DicDataMapper { |
| | | |
| | |
| | | |
| | | /** |
| | | * 新增坐标信息 |
| | | * |
| | | * @param posDto |
| | | */ |
| | | void addPos(@Param("dto") PosDto posDto); |
| | | |
| | | /** |
| | | * 查询当前组织的标语 |
| | | * |
| | | * @param parameter |
| | | * @return |
| | | */ |
| | |
| | | * @return |
| | | */ |
| | | List<PosDto> getPosByBizTag(@Param("companyId") String companyId, @Param("bizTag") String bizTag); |
| | | |
| | | /** |
| | | * 获取行政区域 |
| | | * |
| | | * @param param |
| | | * @return |
| | | */ |
| | | List<DicArea> listDicArea(@Param("page") Page<DicArea> page, @Param("param") BaseParam param); |
| | | } |