101captain
2022-05-13 6220152edb324d95f8381741df4c868b83f71a88
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/BcRegionService.java
@@ -4,6 +4,7 @@
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)表服务接口
@@ -15,10 +16,8 @@
 */
public interface BcRegionService extends IService<BcRegion> {
    /**
     * 分页查询
     *
     * @param name
     * @return
     */
    R pageList(String name);
    R pageList(String province, String city, String country,String town);
}