提交 | 用户 | 时间
|
a6de49
|
1 |
package com.iailab.module.data.point.dto; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.tags.Tag; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.io.Serializable; |
|
7 |
|
|
8 |
/** |
|
9 |
* @author PanZhibao |
|
10 |
* @Description |
|
11 |
* @createTime 2024年05月12日 |
|
12 |
*/ |
|
13 |
@Data |
|
14 |
@Tag(name = "测量点") |
|
15 |
public class DaPointMeasureDTO extends DaPointDTO implements Serializable { |
|
16 |
private static final long serialVersionUID = 1L; |
|
17 |
|
|
18 |
private String tagId; |
|
19 |
|
|
20 |
private String sourceName; |
|
21 |
|
|
22 |
private String sourceAddress; |
|
23 |
} |