liukangdong
2024-12-13 0c51ea5f39e11279ccebbad241cbb09aa74ee1a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
 
}