rk
2025-09-29 218e84d2264e413f31a2f3957f05bb7b8ad42d5d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
 
}