Sunshine
2024-11-04 919ed870ea1def0cfdd1dff23bec204975e7f34c
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;
}