All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencent.devops.metrics.pojo.vo.BaseQueryReqVO.kt Maven / Gradle / Ivy

package com.tencent.devops.metrics.pojo.vo

import io.swagger.v3.oas.annotations.media.Schema

@Schema(title = "基本查询条件请求报文")
open class BaseQueryReqVO(
    @get:Schema(title = "项目ID", required = false)
    open var projectId: String? = null,
    @get:Schema(title = "流水线ID", required = false)
    open var pipelineIds: List? = null,
    @get:Schema(title = "流水线标签", required = false)
    open val pipelineLabelIds: List? = null,
    @get:Schema(title = "开始时间", required = false)
    open var startTime: String? = null,
    @get:Schema(title = "结束时间", required = false)
    open var endTime: String? = null
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy