ab
2024-11-04 09d882262f530ded672f1c01fb65a1fefa00d52d
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package com.nova.sankuai.domain.vo.capitalresult;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/4/29
 */
@Data
@ApiModel(value = "资方信息VO")
public class CapitalInfoVo {
 
    @ApiModelProperty(value = "资方信息Id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    @ApiModelProperty(value = "资方名称")
    private String name;
 
    @ApiModelProperty(value = "公司名称")
    private String company;
 
    @ApiModelProperty(value = "资方代码")
    private String code;
 
    @ApiModelProperty(value = "是否启用 0-未启用 1-启用")
    private Integer enableFlag;
 
    @ApiModelProperty(value = "资方图标路径")
    private String iconUrl;
 
    @ApiModelProperty(value = "是否显示在首页")
    private Integer isShowPage;
 
    @ApiModelProperty(value = "排序")
    private Integer seq;
 
    @ApiModelProperty(value = "0为线上贷款,1为银行直贷")
    private Integer fundType;
 
    /**
     * 枚举:CapitalAutoPushEnum
     */
    @ApiModelProperty(value = "自动推送 0为启用,1为不启用")
    private Integer autoPush;
 
    @ApiModelProperty(value = "首页显示类型")
    private String pageDisplayType;
 
    @ApiModelProperty(value = "城市筛选")
    private String cityLimit;
 
    @ApiModelProperty(value = "年龄下限")
    private Integer ageLowerLimit;
 
    @ApiModelProperty(value = "年龄上限")
    private Integer ageUpperLimit;
 
    @ApiModelProperty(value = "婚姻状况筛选")
    private String marriageLimit;
 
    @ApiModelProperty(value = "芝麻分筛选")
    private Integer sesameLimit;
 
    @ApiModelProperty(value = "社保筛选")
    private String socialSecurityLimit;
 
    @ApiModelProperty(value = "公积金筛选")
    private String providentFundLimit;
 
    @ApiModelProperty(value = "房产信息筛选")
    private String houseLimit;
 
    @ApiModelProperty(value = "车产信息筛选")
    private String carLimit;
 
    @ApiModelProperty(value = "保单筛选")
    private String policyLimit;
 
    @ApiModelProperty(value = "信用卡筛选")
    private Integer creditCardLimit;
 
    @ApiModelProperty(value = "申请金额下限")
    private Integer amountLowerLimit;
 
    @ApiModelProperty(value = "申请金额上限")
    private Integer amountUpperLimit;
 
    @ApiModelProperty(value = "月收入筛选")
    private Integer monthlyIncomeLimit;
 
    @ApiModelProperty(value = "学历筛选")
    private String educationLimit;
 
    @ApiModelProperty(value = "联登模式开关 0为关 1为开")
    private Integer isCollion;
 
    @ApiModelProperty(value = "渠道配置 0-不指定 1-包含 2-不包含")
    private Integer channelConfig;
 
    @ApiModelProperty(value = "渠道配置Id列表")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private String channelIds;
 
    @ApiModelProperty(value = "是否显示弹窗 0为否 1为是")
    private Integer isPopUp;
 
    @ApiModelProperty(value = "使用场景标识集合 参考枚举CapitalInfoUserSceneEnum 0-默认 1-前置绑卡 2-无需判断审批结果")
    private String useSceneFlag;
 
    @ApiModelProperty(value = "审核开关  0为关  1为开")
    private Integer auditSwitch;
 
    /**
     * 于2022-10-24新增:是否一直显示
     */
    @ApiModelProperty(value = "是否一直显示")
    private String alwayShow;
 
    @ApiModelProperty(value = "是否顶部显示")
    private Integer isTopView;
 
    @ApiModelProperty(value = "联登模式弹窗开关")
    private Integer collionMode;
 
    @ApiModelProperty(value = "安卓下载链接")
    private String androidLink;
 
    @ApiModelProperty(value = "IOS下载链接")
    private String iosLink;
 
    // ab新增于2024-10-16
    @ApiModelProperty(value = "匹配H5匹配资金方 1是 0否")
    private Integer h5Match;
 
    @ApiModelProperty(value = "外部流量开关,1开启,0关闭")
    private Integer externalSwitch;
 
    @ApiModelProperty(value = "自主获客开关,1开启,0关闭")
    private Integer acquisitionSwitch;
 
}