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

com.tencent.devops.common.event.pojo.measure.PipelineLabelRelateInfo.kt Maven / Gradle / Ivy

There is a newer version: 3.1.0-rc.4
Show newest version
package com.tencent.devops.common.event.pojo.measure

import io.swagger.annotations.ApiModel
import io.swagger.annotations.ApiModelProperty
import java.time.LocalDateTime

@ApiModel("流水线关联标签数据")
data class PipelineLabelRelateInfo(
    @ApiModelProperty("项目id")
    val projectId: String,
    @ApiModelProperty("流水线id")
    val pipelineId: String? = null,
    @ApiModelProperty("标签id")
    val labelId: Long? = null,
    @ApiModelProperty("标签名称")
    val name: String? = null,
    @ApiModelProperty("创建者")
    val createUser: String? = null,
    @ApiModelProperty("创建时间")
    val createTime: LocalDateTime? = null
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy