diff --git a/detection/src/main/java/com/njcn/gather/detection/pojo/po/SourceCompareDev.java b/detection/src/main/java/com/njcn/gather/detection/pojo/po/SourceCompareDev.java new file mode 100644 index 00000000..2c053681 --- /dev/null +++ b/detection/src/main/java/com/njcn/gather/detection/pojo/po/SourceCompareDev.java @@ -0,0 +1,51 @@ +package com.njcn.gather.detection.pojo.po; + +import lombok.Data; + +import java.util.Map; + + +/** + * @author wr + * @description + * @date 2024/12/18 9:09 + */ +@Data +public class SourceCompareDev { + + /** + * 装置名称 + */ + private String devName; + + /** + * 装置ip + */ + private String ip; + /** + * 装置通道 + */ + private String lineNum; + + /** + * 描述 + */ + private String desc; + + /** + * 是否合格 + */ + private Boolean isQualified; + + /** + * 源数据 + */ + private Map sourceData; + + /** + * 装置数据 + */ + private Map DevData; + + +}