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
|
}
|