liukangdong
2024-10-18 a2746876e81443d52bc4cb6f35bf8554741a6b4c
server/visits/dmvisit_service/src/main/java/com/doumee/dao/openapi/response/PlatformNumByStatusResponse.java
@@ -11,13 +11,16 @@
 * @create 2023/12/7 11:19
 */
@Data
@ApiModel("【月台】按状态统计月台数量")
@ApiModel("【月台】月台各状态数量统计返回参数")
public class PlatformNumByStatusResponse {
    @ApiModelProperty(value = "使用中数量", example = "1")
    private int usingNum;
    private int usingNum = 0;
    @ApiModelProperty(value = "空闲数量", example = "1")
    private int idleNum;
    private int idleNum = 0;
    @ApiModelProperty(value = "停用数量", example = "1")
    private int forbiddenNum;
    private int forbiddenNum = 0;
}