| | |
| | | import com.stylefeng.guns.modular.system.model.Company; |
| | | import com.stylefeng.guns.modular.system.model.CompanyCity; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface ICompanyCityService extends IService<CompanyCity> { |
| | | |
| | | |
| | |
| | | * @throws Exception |
| | | */ |
| | | Company query(String[] city) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 根据城市名称获取匹配的企业 |
| | | * @param city |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | Company query1(String[] city) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 根据城市名称获取匹配的企业 |
| | | * @param city |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | List<Company> query2(String[] city) throws Exception; |
| | | } |