com.tencent.devops.process.pojo.pipeline.PipelineCount.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-process Show documentation
Show all versions of api-process Show documentation
Tencent blueking ci project
The newest version!
package com.tencent.devops.process.pojo.pipeline
import io.swagger.v3.oas.annotations.media.Schema
@Schema(title = "流水线数量相关")
data class PipelineCount(
@get:Schema(title = "全部流水线个数", required = true)
var totalCount: Int,
@get:Schema(title = "我的收藏个数", required = true)
var myFavoriteCount: Int,
@get:Schema(title = "我的流水线的个数", required = true)
var myPipelineCount: Int,
@get:Schema(title = "回收站流水线的个数", required = true)
var recycleCount: Int,
@get:Schema(title = "最近使用的流水线的个数", required = true)
val recentUseCount: Int
)