| package com.doumee.dao.openapi.response; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2023/12/7 11:19 | 
|  */ | 
| @Data | 
| @ApiModel("【月台】当前最新预警事件集合返回参数") | 
| public class PlatformWarnEventListResponse { | 
|     @ApiModelProperty(value = "预警标题", example = "1") | 
|     private String title; | 
|     @ApiModelProperty(value = "时间") | 
|     private Date createDate; | 
|     @ApiModelProperty(value = "车牌号") | 
|     private String carCode; | 
|     @ApiModelProperty(value = "事件内容说明") | 
|     private String content; | 
|     @ApiModelProperty(value = "月台名称") | 
|     private String platformName; | 
|     @ApiModelProperty(value = "月台编码") | 
|     private String platfromHkId; | 
| } |