| | |
| | | */ |
| | | package org.springblade.modules.place.mapper; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.doorplateAddress.entity.DoorplateAddressEntity; |
| | | import org.springblade.modules.place.entity.PlaceRelEntity; |
| | | import org.springblade.modules.place.vo.PlaceRelVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.modules.place.vo.PlaceVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | */ |
| | | List<PlaceRelVO> selectPlaceRelPage(IPage page, PlaceRelVO placeRel); |
| | | |
| | | /** |
| | | * 查询地址编码信息(社区派出所相关信息) |
| | | * @param place |
| | | * @return |
| | | */ |
| | | DoorplateAddressEntity getDoorplateAddressEntity(@Param("place") PlaceVO place); |
| | | |
| | | /** |
| | | * 查询未处理的商超数据 |
| | | * @return |
| | | */ |
| | | List<PlaceRelEntity> getMallList(); |
| | | } |