| | |
| | | |
| | | /** |
| | | * 根据行政区域获取设置的电话 |
| | | * @param code |
| | | * @return |
| | | */ |
| | | List<Phone> queryPhones(@Param("province") String province, @Param("city") String city, @Param("code") String code); |
| | | List<Phone> queryPhones(@Param("companyIds") List<Integer> companyIds); |
| | | |
| | | |
| | | /** |
| | | * 获取电话数据 |
| | | * @param type |
| | | * @param platform |
| | | * @param code |
| | | * @return |
| | | */ |
| | | Phone query(@Param("type") Integer type, @Param("platform") Integer platform, |
| | | @Param("province") String province, @Param("city") String city, |
| | | @Param("code") String code); |
| | | @Param("companyId") Integer companyId); |
| | | } |