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; }