| | |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.ToString; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author lirm |
| | | * @Description |
| | | * @createTime 2024年09月2日 |
| | | */ |
| | | @Schema(description = "数据平台 - DaPoint分页 Request VO") |
| | | @Schema(description = "数据平台 - 测点分页 Request VO") |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @ToString(callSuper = true) |
| | |
| | | private String pointNo; |
| | | |
| | | private String pointName; |
| | | |
| | | private String pointType; |
| | | |
| | | private String dataType; |
| | | |
| | | private String sourceName; |
| | | |
| | | private String tagNo; |
| | | |
| | | private Integer isEnable; |
| | | |
| | | private String collectQuality; |
| | | |
| | | private List<String> pointNos; |
| | | } |