| 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 = 0 ; | 
|   | 
| } |