k94314517
2024-08-30 6b9a7ae981171c1bb6ff6c7d6d0c0103ed1f9348
server/visits/dmvisit_service/src/main/java/com/doumee/dao/openapi/response/PlatformNumByStatusResponse.java
@@ -13,11 +13,14 @@
@Data
@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;
}