k94314517
2024-09-24 45f553e1c5f9d1b948c131fd42ca89d7910ffe03
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
27
28
package com.doumee.dao.openapi.response;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/12/7 11:19
 */
@Data
@ApiModel("【月台】月台状态")
public class PlatformStatusListResponse {
 
    @ApiModelProperty(value = "月台ID" )
    private String platformHkId;
    @ApiModelProperty(value = "月台名称" )
    private String platformName;
    @ApiModelProperty(value = "车牌号" )
    private String carCode;
    @ApiModelProperty(value = "月台状态 0-无车 1-有车 2-超时停靠 3-错误停靠" )
    private Integer status;
 
}