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,
|
)
|