package com.doumee.dao.web.response.platformReport; 
 | 
  
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
/** 
 | 
 * 月台工作时长趋势 
 | 
 * 
 | 
 * @Author : Rk 
 | 
 * @create 2024/10/25 10:59 
 | 
 */ 
 | 
@Data 
 | 
public class PlatformDurationVO { 
 | 
  
 | 
  
 | 
    @ApiModelProperty(value = "作业时长信息  单位分钟") 
 | 
    private Integer workTotalTime; 
 | 
  
 | 
    @ApiModelProperty(value = "开放总时长 单位分钟") 
 | 
    private Integer openTotalTime; 
 | 
  
 | 
    @ApiModelProperty(value = "月台主键") 
 | 
    private Integer platformId; 
 | 
  
 | 
    @ApiModelProperty(value = "月台名称") 
 | 
    private String platformName; 
 | 
  
 | 
} 
 |