feiyu02
2025-10-30 9cb8d7e0f4ffca386b14a15f8a0aca4d1db23252
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cn.flightfeather.supervision.lightshare.vo.dataprod.base
 
import cn.flightfeather.supervision.domain.ds1.entity.DustDataResult
import cn.flightfeather.supervision.domain.ds1.entity.Scense
import io.swagger.annotations.ApiModel
import io.swagger.annotations.ApiModelProperty
 
/**
 * 数据产品监测数据信息
 * @date 2025/9/15
 * @author feiyu02
 */
@ApiModel(value = "基础数据产品监测数据信息")
class DPMonitorDataInfo {
    @ApiModelProperty(value = "场景信息")
    var scene: Scense? = null
    @ApiModelProperty(value = "监测数据")
    var data: DustDataResult? = null
}