提交 | 用户 | 时间
|
a6de49
|
1 |
package com.iailab.module.data.point.dto; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import io.swagger.v3.oas.annotations.tags.Tag; |
|
5 |
import lombok.Data; |
|
6 |
|
|
7 |
import java.io.Serializable; |
|
8 |
import java.math.BigDecimal; |
|
9 |
import java.util.Date; |
|
10 |
|
|
11 |
/** |
|
12 |
* @author PanZhibao |
|
13 |
* @Description |
|
14 |
* @createTime 2024年05月11日 |
|
15 |
*/ |
|
16 |
@Data |
|
17 |
@Tag(name = "点值表") |
|
18 |
public class DaPointValueDTO implements Serializable { |
|
19 |
private static final long serialVersionUID = 1L; |
|
20 |
|
|
21 |
@Schema(description = "id") |
|
22 |
private String id; |
|
23 |
|
|
24 |
@Schema(description = "测点编码") |
|
25 |
private String pointNo; |
|
26 |
|
|
27 |
@Schema(description = "数据时间") |
|
28 |
private Date dataTime; |
|
29 |
|
|
30 |
@Schema(description = "数据值") |
|
31 |
private BigDecimal dataValue; |
|
32 |
} |