Air
2024-11-04 2016903d06e308f44b9463fcd4029850ababf152
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
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 = "APP资方列表VO")
public class CapitalInfoAppVo {
 
    @ApiModelProperty(value = "资方信息Id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    @ApiModelProperty(value = "资方名称")
    private String name;
 
    @ApiModelProperty(value = "资方代码")
    private String code;
 
    @ApiModelProperty(value = "资方图标路径")
    private String iconUrl;
 
    @ApiModelProperty(value = "资方对接状态 0-未申请 1-审批中 2-审批通过 3-审批不通过 4-预审通过 5-一审通过 6-借款失败")
    private Integer status;
 
    @ApiModelProperty(value = "资方额度")
    private Integer quota;
 
    @ApiModelProperty(value = "0为线上贷款,1为银行直贷")
    private Integer fundType;
 
    @ApiModelProperty(value = "资方结果Id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long capitalResultId;
 
    @ApiModelProperty(value = "排序")
    private Integer seq;
 
    @ApiModelProperty(value = "下一步走哪个流程 0-通过  1-失败  2-等待")
    private Integer flowPathNext;
 
    @ApiModelProperty(value = "联登模式:1半流程,0非半流程")
    private Integer collionMode;
}