package com.doumee.dao.openapi.response; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * Created by IntelliJ IDEA. * * @Author : Rk * @create 2023/12/7 11:19 */ @Data @ApiModel("【月台】按状态统计月台数量") public class PlatformNumByStatusResponse { @ApiModelProperty(value = "使用中数量", example = "1") private int usingNum = 0; @ApiModelProperty(value = "空闲数量", example = "1") private int idleNum = 0; @ApiModelProperty(value = "停用数量", example = "1") private int forbiddenNum = 0; }