From 786586e40ccb3c178a051de019a03161dfa3fd6f Mon Sep 17 00:00:00 2001 From: wr <1754607820@qq.com> Date: Wed, 18 Dec 2024 15:25:01 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=BE=AE=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../detection/pojo/po/SourceCompareDev.java | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 detection/src/main/java/com/njcn/gather/detection/pojo/po/SourceCompareDev.java 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; + + +}