| | |
| | | * 派出所信息表 服务类 |
| | | * |
| | | * @author lw |
| | | * @since 2026-01-07 |
| | | * @since 2026-01-08 |
| | | */ |
| | | public interface IFwPoliceStationService extends BaseService<FwPoliceStationEntity> { |
| | | /** |
| | |
| | | */ |
| | | IPage<FwPoliceStationVO> selectFwPoliceStationPage(IPage<FwPoliceStationVO> page, FwPoliceStationVO fwPoliceStation); |
| | | |
| | | /** |
| | | * 列表 |
| | | * |
| | | * @return |
| | | */ |
| | | List<FwPoliceStationVO> selectFwPoliceStationList(); |
| | | |
| | | |
| | | /** |
| | | * 导出数据 |
| | |
| | | */ |
| | | List<FwPoliceStationExcel> exportFwPoliceStation(Wrapper<FwPoliceStationEntity> queryWrapper); |
| | | |
| | | /** |
| | | * 根据多边形区域查询派出所 |
| | | * |
| | | * @param polygons 多边形WKT字符串集合 |
| | | * @return |
| | | */ |
| | | List<FwPoliceStationVO> selectByPolygons(List<String> polygons); |
| | | |
| | | } |