From 487aeec04a245df25caf1cfbcc04a0bcbc16c7c8 Mon Sep 17 00:00:00 2001 From: cdf <857448963@qq.com> Date: Mon, 30 Dec 2024 16:38:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E4=BD=93=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pojo/vo/DetectionResultInfoVO.java | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 detection/src/main/java/com/njcn/gather/detection/pojo/vo/DetectionResultInfoVO.java diff --git a/detection/src/main/java/com/njcn/gather/detection/pojo/vo/DetectionResultInfoVO.java b/detection/src/main/java/com/njcn/gather/detection/pojo/vo/DetectionResultInfoVO.java new file mode 100644 index 00000000..5b3f236f --- /dev/null +++ b/detection/src/main/java/com/njcn/gather/detection/pojo/vo/DetectionResultInfoVO.java @@ -0,0 +1,80 @@ +package com.njcn.gather.detection.pojo.vo; + +import lombok.Data; + +import java.time.LocalDateTime; +import java.util.List; + +/** + * CN_Gather + * + * @author cdf + * @date 2024/12/29 + */ +@Data +public class DetectionResultInfoVO { + + private String freq; + + private String Ua; + + private String Ub; + + private String Uc; + + private String Ia; + + private String Ib; + + private String Ic; + + private List resultList; + + private List resultInfoList; + + + + /** + * 检测结果 + */ + @Data + public static class Result{ + + private Integer channelNum; + + private Double standardVal; + + private Double aVal; + + private Double aLimit; + + private Double bVal; + + private Double bLimit; + + private Double cVal; + + private Double cLimit; + + private Double maxError; + + private Integer result; + + } + + /** + * 原始数据 + */ + @Data + public static class OriginalInfo{ + + private LocalDateTime time; + + private Double aVal; + + private Double bVal; + + private Double cVal; + + } +}