ll
liukangdong
2024-12-13 75428aa3f870b62c7ccc7ebc7c0360c5fa4fb3e6
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;
 
}