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

com.tencent.devops.process.pojo.pipeline.PipelineCount.kt Maven / Gradle / Ivy

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
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy