1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
}