| package com.doumee.dao.web.response; | 
|   | 
| import com.doumee.core.model.LoginUserInfo; | 
| import com.doumee.dao.business.model.Platform; | 
| import com.doumee.dao.business.model.PlatformGroup; | 
| import com.doumee.dao.business.model.PlatformJob; | 
| import io.swagger.annotations.Api; | 
| 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 | 
| @Api(tags = "排队情况" ) | 
| public class LineUpVO { | 
|   | 
|     @ApiModelProperty(value = "月台组信息") | 
|     private List<PlatformGroup> platformGroupList; | 
|   | 
|     @ApiModelProperty(value = "用户", hidden = true) | 
|     private LoginUserInfo loginUserInfo; | 
|   | 
| } |