| | |
| | | */ |
| | | @Tag(name = "数据平台 - 指标数据集") |
| | | @RestController |
| | | @RequestMapping("/data/ind-data-set") |
| | | @RequestMapping("/data/ind/data-set") |
| | | @Validated |
| | | public class IndDataSetController { |
| | | @Autowired |
| | |
| | | |
| | | @GetMapping("/get") |
| | | @Operation(summary = "获取指标数据集信息") |
| | | @PreAuthorize("@ss.hasPermission('system:ind-data-set:query')") |
| | | @PreAuthorize("@ss.hasPermission('data:ind-data-set:query')") |
| | | public CommonResult<IndDataSetRespVO> get(String id) { |
| | | IndDataSetEntity entity = indDataSetService.get(id); |
| | | return success(BeanUtils.toBean(entity, IndDataSetRespVO.class)); |