| | |
| | | package cn.flightfeather.supervision.lightshare.vo.dataprod |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat |
| | | import io.swagger.annotations.ApiModel |
| | | import io.swagger.annotations.ApiModelProperty |
| | | import java.time.LocalDateTime |
| | | |
| | |
| | | * @date 2025/9/15 |
| | | * @author feiyu02 |
| | | */ |
| | | class QueryOpt { |
| | | @ApiModel("查询参数") |
| | | open class QueryOpt { |
| | | @ApiModelProperty("产品编号") |
| | | var prodId: String? = null |
| | | |
| | | @ApiModelProperty("配置编号", notes = "0表示未使用配置的自定义时段产品") |
| | | var configId: Int = 0 |
| | | |
| | | @ApiModelProperty("总任务id") |
| | | var topTaskId: String? = null |
| | | |