package com.panzhihua.service_community.service;
|
|
import com.panzhihua.common.model.vos.R;
|
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)表服务接口
|
* projectName 成都呐喊信息技术有限公司-智慧社区项目
|
* description: 行政区划表相关功能
|
*
|
* @author zzj
|
* @since 2022-04-20 14:26:14
|
*/
|
public interface BcRegionService extends IService<BcRegion> {
|
/**
|
*
|
* @return
|
*/
|
R pageList(String province, String city, String country,String town);
|
|
R selectCommunityCodeByName( String city, String country,String town,String villagetr);
|
|
/**
|
* 四级联动列表
|
* @return
|
*/
|
R levelList(Integer level,String code);
|
|
/**
|
* 四级联动列表
|
* @return
|
*/
|
R levelListBackstage();
|
}
|