| | |
| | | import com.panzhihua.common.model.dtos.property.CommonPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.service_community.entity.BcRegion; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | /** |
| | | * 行政区划表(BcRegion)表服务接口 |
| | |
| | | */ |
| | | public interface BcRegionService extends IService<BcRegion> { |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param name |
| | | * @return |
| | | */ |
| | | R pageList(String name); |
| | | R pageList(String province, String city, String country,String town); |
| | | |
| | | /** |
| | | * 四级联动列表 |
| | | * @return |
| | | */ |
| | | R levelList(Integer level,String code); |
| | | |
| | | /** |
| | | * 四级联动列表 |
| | | * @return |
| | | */ |
| | | R levelListBackstage(); |
| | | } |