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
30
31
32
33
package com.nova.sankuai.domain.vo.capitalresult;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/5/9
 */
 
@Data
@ApiModel(value = "资方机构推送结果")
public class CapitalPushResultVo {
 
    @ApiModelProperty(value = "宜信推送结果")
    private LvdiPushResultVo yiXinPushVo;
 
    @ApiModelProperty(value = "信用飞推送结果")
    private XinYongFeiPushResultVo xinYongFeiPushResultVo;
 
    @ApiModelProperty(value = "汇智信推送结果")
    private HuiZhiXinPushResultVo huiZhiXinPushResultVo;
 
    @ApiModelProperty(value = "小花钱包推送结果")
    private LvdiPushResultVo xiaoHuaQianBaoPushResultVo;
    @ApiModelProperty(value = "易贝分期推送结果")
    private YiBeiPushResultVo yiBeiPushResultVo;
    @ApiModelProperty(value = "中赞信服推送结果")
    private ZhongZanPushResultVo zhongZanPushResultVo;
 
 
}