| | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | import com.github.xiaoymin.knife4j.annotations.DynamicParameter; |
| | | import com.ruoyi.management3d.tiles3d.domain.ArdTiles3d; |
| | | import com.ruoyi.management3d.tiles3d.service.IArdTiles3dService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.ApiParam; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('management3d:tiles3d:list')") |
| | | @GetMapping("/list") |
| | | @ApiOperation("查询三维实景列表") |
| | | public TableDataInfo list(ArdTiles3d ardTiles3d) |
| | | { |
| | | startPage(); |
| | |
| | | Map deptAndTiles3d = ardTiles3dService.getChildDeptAndTiles3d(); |
| | | return AjaxResult.success(deptAndTiles3d); |
| | | } |
| | | @GetMapping("/getChildTiles3d") |
| | | @ApiOperation("获取三维实景") |
| | | public AjaxResult getChildTiles3d() |
| | | { |
| | | Map deptAndTiles3d = ardTiles3dService.getChildTiles3d(); |
| | | return AjaxResult.success(deptAndTiles3d); |
| | | } |
| | | } |