| | |
| | | import com.iailab.framework.common.pojo.PageParam; |
| | | import com.iailab.framework.common.pojo.PageResult; |
| | | import com.iailab.framework.common.util.object.BeanUtils; |
| | | 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.collector.OpcUaCollector; |
| | | 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 com.iailab.module.data.channel.opcua.vo.OpcUaTagPageReqVO; |
| | | import com.iailab.module.data.channel.opcua.vo.OpcUaTagRespVO; |
| | | import com.iailab.module.data.channel.tag.vo.TagImportRespVO; |
| | | import com.iailab.module.data.common.enums.DataQualityEnum; |
| | | import com.iailab.module.data.common.enums.IsEnableEnum; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import io.swagger.v3.oas.annotations.Parameter; |
| | | import io.swagger.v3.oas.annotations.Parameters; |
| | |
| | | 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; |
| | | |
| | | /** |
| | | * 操作opcua tag配置 |
| | | * |
| | | * @author lirm |
| | | * @Description |
| | | * @createTime 2024年08月26日 |
| | |
| | | @PreAuthorize("@ss.hasPermission('data:channel-opcua:query')") |
| | | @GetMapping("page") |
| | | public CommonResult<PageResult<OpcUaTagRespVO>> list(@Valid OpcUaTagPageReqVO reqVO) { |
| | | |
| | | PageResult<ChannelOPCUATagEntity> page = channelOpcuaTagService.queryPage(reqVO); |
| | | 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); |
| | | PageResult<OpcUaTagRespVO> pageResult = BeanUtils.toBean(page, OpcUaTagRespVO.class); |
| | | pageResult.getList().forEach(item -> { |
| | | item.setDataValue(opcUaCollector.getTagValue(reqVO.getDeviceId(), item.getTagName())); |
| | | item.setDataTime(new Date()); |
| | | item.setDataQuality(DataQualityEnum.getEumByValue(item.getDataValue()).getDesc()); |
| | | }); |
| | | return success(pageResult); |
| | | } |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:channel-opcua:query')") |
| | |
| | | public void importTemplate(HttpServletResponse response) throws IOException { |
| | | // 手动创建导出 demo |
| | | List<OpcUaTagImportExcelVO> list = Collections.singletonList( |
| | | OpcUaTagImportExcelVO.builder().tagName("Tag名称").dataType("String").address("123").samplingRate(1000).enabled(1) |
| | | OpcUaTagImportExcelVO.builder().tagName("Tag名称").dataType("String").address("123").samplingRate(1000).enabled(IsEnableEnum.ENABLE.getCode()) |
| | | .build() |
| | | ); |
| | | // 输出 |
| | | ExcelUtils.write(response, "tag导入模板.xls", "tag列表", OpcUaTagImportExcelVO.class, list,true); |
| | | ExcelUtils.write(response, "tag导入模板.xls", "tag列表", OpcUaTagImportExcelVO.class, list, true); |
| | | } |
| | | |
| | | @PostMapping("/import") |
| | |
| | | @RequestParam(value = "updateSupport", required = false, defaultValue = "false") Boolean updateSupport, |
| | | @RequestParam("device") String device) throws Exception { |
| | | List<OpcUaTagImportExcelVO> list = ExcelUtils.read(file, OpcUaTagImportExcelVO.class); |
| | | return success(channelOpcuaTagService.importOpcUaTagList(list, updateSupport,device)); |
| | | return success(channelOpcuaTagService.importOpcUaTagList(list, updateSupport, device)); |
| | | } |
| | | } |