|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('management3d:tiles3d:query')") | 
|---|
|  |  |  | @GetMapping(value = "/{tilesId}") | 
|---|
|  |  |  | @ApiOperation("获取三维实景详细信息") | 
|---|
|  |  |  | public AjaxResult getInfo(@PathVariable("tilesId") String tilesId) { | 
|---|
|  |  |  | return success(ardTiles3dService.selectArdTiles3dByTilesId(tilesId)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 新增三维实景 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiOperation("新增三维实景") | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('management3d:tiles3d:add')") | 
|---|
|  |  |  | @Log(title = "三维实景", businessType = BusinessType.INSERT) | 
|---|
|  |  |  | @PostMapping | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 修改三维实景 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiOperation("修改三维实景") | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('management3d:tiles3d:edit')") | 
|---|
|  |  |  | @Log(title = "三维实景", businessType = BusinessType.UPDATE) | 
|---|
|  |  |  | @PutMapping | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 删除三维实景 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiOperation("删除三维实景") | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('management3d:tiles3d:remove')") | 
|---|
|  |  |  | @Log(title = "三维实景", businessType = BusinessType.DELETE) | 
|---|
|  |  |  | @DeleteMapping("/{tilesIds}") | 
|---|