2
sunshine
2024-11-05 d1f9fb55a136e589a5ad588ed9a93ce9272917da
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
52
53
54
package com.nova.sankuai.domain.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @date 2022-04-18
 */
@Data
@ApiModel(value = "全流程报表Vo")
public class WholeProcessStatisticsVo {
 
    @ApiModelProperty(value = "当天时间")
    private String date;
 
    @ApiModelProperty(value = "类型")
    private String type;
 
    @ApiModelProperty(value = "点击下载人数")
    private Integer downloadCount;
 
    @ApiModelProperty(value = "app登录人数")
    private Integer appLoginCount;
 
    @ApiModelProperty(value = "h5登录人数")
    private Integer h5LoginCount;
 
    @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;
 
}