提交 | 用户 | 时间
|
9d7e02
|
1 |
package com.iailab.module.data.api.point.dto; |
a6de49
|
2 |
|
116db5
|
3 |
import com.iailab.framework.common.pojo.PageParam; |
a6de49
|
4 |
import io.swagger.v3.oas.annotations.media.Schema; |
H |
5 |
import lombok.Data; |
|
6 |
|
|
7 |
import java.io.Serializable; |
|
8 |
|
|
9 |
/** |
|
10 |
* @author PanZhibao |
|
11 |
* @Description |
|
12 |
* @createTime 2024年05月21日 |
|
13 |
*/ |
|
14 |
@Data |
|
15 |
@Schema(description = "测点") |
9d7e02
|
16 |
public class ApiPointDTO implements Serializable { |
a6de49
|
17 |
private static final long serialVersionUID = 1L; |
H |
18 |
|
07890e
|
19 |
@Schema(description = "id", required = true) |
D |
20 |
private String id; |
|
21 |
|
a6de49
|
22 |
@Schema(description = "测点编码", required = true) |
H |
23 |
private String pointNo; |
|
24 |
|
|
25 |
@Schema(description = "测点名称", required = true) |
|
26 |
private String pointName; |
|
27 |
|
|
28 |
@Schema(description = "采集频率", required = true) |
|
29 |
private String minfreqid; |
e255ba
|
30 |
|
L |
31 |
@Schema(description = "当前值", required = false) |
|
32 |
private Object currentValue; |
a6de49
|
33 |
} |