ab
2024-11-05 bead00668eebce8d39d027515d564376de2f5978
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.nova.sankuai.domain.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
/**
 * @author 51913
 */
@Data
@ApiModel(value = "全流程报表Vo")
public class WholeProcessStatisticsListVo {
 
    @ApiModelProperty(value = "当天时间")
    private String date;
 
    @ApiModelProperty(value = "类型")
    private String type;
 
    @ApiModelProperty(value = "点击下载人数")
    private Integer downloadCount;
 
    @ApiModelProperty(value = "登录人数")
    private Integer loginCount;
 
    @ApiModelProperty(value = "OCR+人脸识别人数")
    private Integer ocrCount;
 
    @ApiModelProperty(value = "填写贷款资料(一)人数")
    private Integer baseInfoCount;
 
    @ApiModelProperty(value = "填写银行卡信息人数")
    private Integer bankInfoCount;
 
    @ApiModelProperty(value = "VIP通道人数")
    private Integer queueVipCount;
 
    @ApiModelProperty(value = "普通通道人数")
    private Integer queueNormalCount;
 
    @ApiModelProperty(value = "支付加速包人数")
    private Integer payQueueCount;
 
    @ApiModelProperty(value = "填写贷款资料(二)人数")
    private Integer capitalInfoCount;
 
    @ApiModelProperty(value = "支付会员人数")
    private Integer payVipCount;
 
}