| | |
| | | import com.iailab.framework.common.util.object.BeanUtils; |
| | | import com.iailab.framework.common.util.object.ConvertUtils; |
| | | import com.iailab.framework.excel.core.util.ExcelUtils; |
| | | import com.iailab.module.data.channel.opcua.collector.OpcUaCollector; |
| | | import com.iailab.framework.common.util.object.ConvertUtils; |
| | | import com.iailab.framework.excel.core.util.ExcelUtils; |
| | | import com.iailab.module.data.channel.opcua.entity.ChannelOPCUATagEntity; |
| | | import com.iailab.module.data.channel.opcua.service.ChannelOPCUATagService; |
| | | import com.iailab.module.data.channel.opcua.vo.OpcUaTagExportExcelVO; |
| | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.UUID; |
| | | import java.util.stream.Collectors; |
| | | |
| | | import static com.iailab.framework.apilog.core.enums.OperateTypeEnum.EXPORT; |
| | | import static com.iailab.framework.common.pojo.CommonResult.success; |
| | |
| | | @Resource |
| | | private ChannelOPCUATagService channelOpcuaTagService; |
| | | |
| | | @Resource |
| | | private OpcUaCollector opcUaCollector; |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:channel-opcua:query')") |
| | | @GetMapping("page") |
| | | public CommonResult<PageResult<OpcUaTagRespVO>> list(@Valid OpcUaTagPageReqVO reqVO) { |
| | | |
| | | PageResult<ChannelOPCUATagEntity> page = channelOpcuaTagService.queryPage(reqVO); |
| | | return success(BeanUtils.toBean(page, OpcUaTagRespVO.class)); |
| | | PageResult<OpcUaTagRespVO> pageResultVO = new PageResult<>(); |
| | | pageResultVO.setTotal(page.getTotal()); |
| | | |
| | | List<OpcUaTagRespVO> vos = page.getList().stream().map(entity -> { |
| | | |
| | | OpcUaTagRespVO vo = BeanUtils.toBean(entity,OpcUaTagRespVO.class); |
| | | try{ |
| | | vo.setDataValue( Double.parseDouble(opcUaCollector.getTagValue(reqVO.getDeviceId(),entity.getTagName()))); |
| | | }catch (Exception e){ |
| | | e.printStackTrace(); |
| | | } |
| | | return vo; |
| | | }).collect(Collectors.toList()); |
| | | |
| | | pageResultVO.setList(vos); |
| | | |
| | | return success(pageResultVO); |
| | | } |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:channel-opcua:query')") |