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