提交 | 用户 | 时间 | ||
ed4f78 | 1 | package com.iailab.module.data.common; |
潘 | 2 | |
3 | import io.swagger.v3.oas.annotations.tags.Tag; | |
4 | import lombok.Data; | |
5 | ||
6 | import java.io.Serializable; | |
7 | import java.util.Date; | |
8 | ||
9 | /** | |
10 | * @author PanZhibao | |
11 | * @Description | |
12 | * @createTime 2024年11月03日 | |
13 | */ | |
14 | @Data | |
15 | @Tag(name = "值结果") | |
16 | public class ApiDataValueDTO implements Serializable { | |
17 | private static final long serialVersionUID = 1L; | |
18 | ||
19 | private Date dataTime; | |
20 | ||
21 | private double dataValue; | |
22 | } |