| | |
| | | package cn.flightfeather.supervision.lightshare.vo.dataprod |
| | | |
| | | import cn.flightfeather.supervision.domain.ds1.entity.Problemlist |
| | | import cn.flightfeather.supervision.domain.ds1.entity.Subtask |
| | | import cn.flightfeather.supervision.lightshare.vo.ProblemListVo |
| | | import io.swagger.annotations.ApiModel |
| | | import io.swagger.annotations.ApiModelProperty |
| | | |
| | | /** |
| | | * 数据产品现场巡查信息 |
| | | * @date 2025/9/15 |
| | | * @author feiyu02 |
| | | */ |
| | | @ApiModel(value = "基础数据产品现场巡查信息") |
| | | class DPInspectionInfo { |
| | | @ApiModelProperty(value = "巡查索引") |
| | | var index: Int? = null |
| | | @ApiModelProperty(value = "子任务信息") |
| | | var subTask: Subtask? = null |
| | | @ApiModelProperty(value = "问题列表") |
| | | var problems: List<ProblemListVo>? = null |
| | | } |