sunshine
2024-11-05 00b4581009af28098da4286a8ef9f4d72c7c5728
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
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
 * @Date 2022/7/1 13:59
 */
@Data
@ApiModel(value = "恒易贷推送结果")
public class HengYiDaiPushResultVo {
 
    @ApiModelProperty(value = "撞库结果 0-撞库失败 1-撞库成功")
    private boolean checkResult;
 
    @ApiModelProperty(value = "第三方订单状态")
    private Integer thirdStatus;
 
    @ApiModelProperty(value = "页面类型 0-无页面跳转 1-系统内部借款页面 2-第三方绑卡/签约页面 3-系统内部还款页面")
    private Integer pageType;
 
    @ApiModelProperty(value = "资方对接结果Id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long capitalResultId;
 
}