package com.nova.sankuai.domain.api.yixin.response;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @Description 借款Response
|
* @Author CWR
|
* @Date 2022/3/9 23:07
|
*/
|
@Data
|
@ApiModel
|
public class YxLoanResponse extends YXResponse {
|
|
/**
|
* urlType为1时:根据入参platform返回对应平台APP下载链接
|
*/
|
@ApiModelProperty(value = "借款跳转页面")
|
private String returnUrl;
|
|
@ApiModelProperty(value = "链接类型 0:H5页面、1:APP下载链接")
|
private String urlType;
|
}
|