package com.doumee.dao.web.reqeust; 
 | 
  
 | 
import com.doumee.core.model.LoginUserInfo; 
 | 
import io.swagger.annotations.Api; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
/** 
 | 
 * Created by IntelliJ IDEA. 
 | 
 * 
 | 
 * @Author : Rk 
 | 
 * @create 2023/12/7 11:19 
 | 
 */ 
 | 
@Data 
 | 
@Api(tags = "月台信息查询业务" ) 
 | 
public class PlatformDataDTO { 
 | 
  
 | 
    @ApiModelProperty(value = "查询月台类型:0=全部月台;1=配置显示月台") 
 | 
    private Integer queryType; 
 | 
  
 | 
    @ApiModelProperty(value = "是否查询月台任务数据:0=否;1=是 后台使用,前端入0") 
 | 
    private Integer queryData; 
 | 
  
 | 
  
 | 
} 
 |