| | |
| | | package cn.flightfeather.supervision.lightshare.vo.dataprod |
| | | |
| | | 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 |
| | | } |