package com.supersavedriving.driver.modular.system.service;
|
|
import com.baomidou.mybatisplus.service.IService;
|
import com.supersavedriving.driver.modular.system.model.BranchOffice;
|
import com.supersavedriving.driver.modular.system.warpper.OpenCityWarpper;
|
|
import java.util.List;
|
|
/**
|
* 分公司接口逻辑类
|
* @author pzb
|
* @Date 2023/2/3 14:49
|
*/
|
public interface IBranchOfficeService extends IService<BranchOffice> {
|
|
|
/**
|
* 获取开通省市数据
|
* @return
|
* @throws Exception
|
*/
|
List<OpenCityWarpper> queryOpenCity() throws Exception;
|
|
|
/**
|
* 根据城市code获取开通区域
|
* @param cityCode 城市code
|
* @return
|
* @throws Exception
|
*/
|
List<OpenCityWarpper> queryOpenDistrict(String cityCode) throws Exception;
|
}
|