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 VisitRetentionDataVO { 
 | 
  
 | 
    @ApiModelProperty(value = "访客姓名") 
 | 
    private String name; 
 | 
  
 | 
    @ApiModelProperty(value = "拜访部门") 
 | 
    private String companyName; 
 | 
  
 | 
    @ApiModelProperty(value = "超时时长 单位:分钟") 
 | 
    private int timeOutMinute; 
 | 
  
 | 
} 
 |