| | |
| | | import org.springblade.core.mp.support.Query; |
| | | import org.springblade.core.tool.api.R; |
| | | import org.springblade.core.tool.utils.Func; |
| | | import org.springblade.modules.doorplateAddress.entity.DoorplateAddressEntity; |
| | | import org.springblade.modules.grid.excel.GridExcel; |
| | | import org.springblade.modules.grid.excel.GridImporter; |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | |
| | | * 空间分析 |
| | | */ |
| | | @GetMapping("/spatialAnalysis") |
| | | public R spatialAnalysis() { |
| | | return R.data(gridService.spatialAnalysis()); |
| | | public R spatialAnalysis(DoorplateAddressEntity addressEntity) { |
| | | return R.data(gridService.spatialAnalysis(addressEntity)); |
| | | } |
| | | |
| | | /** |
| | |
| | | public R gridInfoByHouseCode( @RequestParam("houseCode") String houseCode) { |
| | | return R.data(gridService.gridInfoByHouseCode(houseCode)); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 网格集合查询 |
| | | * @param grid |
| | | * @return |
| | | */ |
| | | @GetMapping("/getGridList") |
| | | public R getGridList(GridVO grid) { |
| | | return R.data(gridService.getGridList(grid)); |
| | | } |
| | | } |