feiyu02
2025-10-30 9cb8d7e0f4ffca386b14a15f8a0aca4d1db23252
src/main/kotlin/cn/flightfeather/supervision/common/executor/BgTaskConditionVo.kt
@@ -1,10 +1,16 @@
package cn.flightfeather.supervision.common.executor
import io.swagger.annotations.ApiModel
import io.swagger.annotations.ApiModelProperty
/**
 * 后台任务查询条件
 */
@ApiModel("后台任务查询条件")
class BgTaskConditionVo {
    @ApiModelProperty("任务类型")
    var type: BgTaskType? = null
    @ApiModelProperty("任务id")
    var id: String? = null
}