sunshine
2024-11-05 00b4581009af28098da4286a8ef9f4d72c7c5728
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.nova.sankuai.domain.api.yixin.callback;
 
import com.nova.sankuai.domain.api.yixin.response.YxLoanResultQueryResponse;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/5/12
 */
@Data
@ApiModel(value = "宜信用信回调通知结果")
public class YxLoanApplyCallbackResult extends YxLoanResultQueryResponse {
 
    @ApiModelProperty(value = "贷款编号")
    private String loanNo;
 
}