段飞宇
2 years ago
6 changed files with 109 additions and 9 deletions
@ -0,0 +1,45 @@
|
||||
package com.hnac.hzims.operational.config.vo; |
||||
|
||||
import com.fasterxml.jackson.annotation.JsonInclude; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* @Author WL |
||||
* @Version v1.0 |
||||
* @Serial 1.0 |
||||
* @Date 2023/8/1 10:37 |
||||
*/ |
||||
@Data |
||||
public class PointDataVo { |
||||
|
||||
/** |
||||
* 站点id |
||||
*/ |
||||
@JsonInclude(JsonInclude.Include.NON_NULL) |
||||
private String station; |
||||
|
||||
|
||||
/** |
||||
* 站点名称 |
||||
*/ |
||||
@JsonInclude(JsonInclude.Include.NON_NULL) |
||||
private String stationName; |
||||
/** |
||||
* 数据采集时间 |
||||
*/ |
||||
private String time; |
||||
/** |
||||
* 数据 |
||||
*/ |
||||
private String value; |
||||
/** |
||||
* 质量值 |
||||
*/ |
||||
@JsonInclude(JsonInclude.Include.NON_NULL) |
||||
private Integer q; |
||||
|
||||
|
||||
@JsonInclude(JsonInclude.Include.NON_EMPTY) |
||||
private String signage; |
||||
|
||||
} |
Loading…
Reference in new issue