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; + + } +}