| | |
| | | package com.gkhy.system.domain.vo.response; |
| | | |
| | | public class ProjectNumREsp { |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | @Data |
| | | @ApiModel(value = "项目数量统计" , description = "项目数量统计") |
| | | public class ProjectNumResp implements Serializable { |
| | | |
| | | @ApiModelProperty(value = "总数量") |
| | | private Integer total = 0; |
| | | |
| | | @ApiModelProperty(value = "基本选用") |
| | | private Integer staging = 0; |
| | | |
| | | @ApiModelProperty(value = "专家选用") |
| | | private Integer expert = 0 ; |
| | | |
| | | @ApiModelProperty(value = "审批") |
| | | private Integer approval = 0; |
| | | |
| | | @ApiModelProperty(value = "结束") |
| | | private Integer end = 0; |
| | | } |