提交 | 用户 | 时间 | ||
a6de49 | 1 | package com.iailab.module.data.api.dto; |
H | 2 | |
3 | import io.swagger.v3.oas.annotations.tags.Tag; | |
4 | import lombok.Data; | |
5 | ||
6 | /** | |
7 | * @author PanZhibao | |
8 | * @Description | |
9 | * @createTime 2023年08月28日 13:57:00 | |
10 | */ | |
11 | @Data | |
12 | @Tag(name = "值导出") | |
13 | public class ApiExportValueDTO { | |
14 | ||
15 | /** | |
16 | * 值 | |
17 | */ | |
18 | private String dataValue; | |
19 | ||
20 | /** | |
21 | * 时间 | |
22 | */ | |
23 | private String dataTime; | |
24 | } |