From 39f890dd4cbb710d0a5e4a3b602b4535d19982e6 Mon Sep 17 00:00:00 2001 From: wr <1754607820@qq.com> Date: Fri, 27 Dec 2024 16:47:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../detection/pojo/vo/DetectionData.java | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 detection/src/main/java/com/njcn/gather/detection/pojo/vo/DetectionData.java diff --git a/detection/src/main/java/com/njcn/gather/detection/pojo/vo/DetectionData.java b/detection/src/main/java/com/njcn/gather/detection/pojo/vo/DetectionData.java new file mode 100644 index 00000000..d2e473f0 --- /dev/null +++ b/detection/src/main/java/com/njcn/gather/detection/pojo/vo/DetectionData.java @@ -0,0 +1,23 @@ +package com.njcn.gather.detection.pojo.vo; + + +import lombok.Data; + +/** + * @author wr + * @description + * @date 2024/12/20 13:52 + */ +@Data +public class DetectionData { + + /** + * 是否是符合数据 + */ + private Integer isData; + + /** + * 是否是符合数据 + */ + private Double data; +}