| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.common.model.dtos.property.CommonPage; |
| | | import com.panzhihua.common.model.vos.community.ProvinceCityReturnVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import com.panzhihua.service_community.entity.BcRegion; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 行政区划表(BcRegion)表数据库访问层 |
| | |
| | | * @return |
| | | */ |
| | | String selectByName(@Param("province") String province,@Param("city") String city,@Param("county")String country,@Param("town")String town); |
| | | |
| | | List<ProvinceCityReturnVO> selectFirst(); |
| | | |
| | | List<ProvinceCityReturnVO> selectSecond(String name); |
| | | |
| | | List<ProvinceCityReturnVO> selectThird(String name); |
| | | |
| | | List<ProvinceCityReturnVO> selectFourth(String name); |
| | | } |