New file |
| | |
| | | package com.dsh.course.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.dsh.course.entity.OpenCityBusiness; |
| | | import com.dsh.course.model.vo.BaseWarpper; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface IOpenCityBusinessService extends IService<OpenCityBusiness> { |
| | | |
| | | |
| | | /** |
| | | * 获取业务类型 |
| | | * @param province 省名 |
| | | * @param city 市名称 |
| | | * @param district 区县名称 |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | List<BaseWarpper> queryBusiness(String province, String city, String district) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 根据选择的城市id获取业务类型 |
| | | * @param id |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | List<BaseWarpper> queryBusinessById(Integer id) throws Exception; |
| | | } |