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