zbb378@sohu.com
2024-11-04 b2bad51be3c8d3e78d7f81a19415faeac2d0297c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.nova.sankuai.domain.api.yixin.response;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/5/11
 */
@ApiModel(value = "获取还款H5页面响应Vo")
@Data
public class YxRepaymentUrlResponse extends YXResponse {
 
    @ApiModelProperty(value = "还款页面地址")
    private String returnUrl;
}