feiyu02
2024-11-19 752e00503f672ddfe2066afb6c235721a3a912b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.flightfeather.supervision.lightshare.vo
 
import com.fasterxml.jackson.annotation.JsonInclude
import io.swagger.annotations.ApiModel
import io.swagger.annotations.ApiModelProperty
 
/**
 * @author riku
 * Date: 2020/9/10
 */
@ApiModel("监测数据类")
@JsonInclude(JsonInclude.Include.NON_NULL)
data class DataVo(
        @ApiModelProperty(value = "时间", example = "yyyy-MM-dd HH:mm")
        var time: String? = null,
        @ApiModelProperty(value = "数据值", notes = "单位:mg/m³")
        var value: Double = 0.0,
        @ApiModelProperty(value = "站点编号")
        var mnCode: String? = null,
        @ApiModelProperty(value = "站点名称")
        var siteName: String? = null,
        @ApiModelProperty(value = "站点供应商")
        var supplier: String? = null,
)