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