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
|
*/
|
@Data
|
@ApiModel(value = "用户还款请求接口响应Vo")
|
public class YxRepaymentApplyResponse extends YXResponse {
|
|
@ApiModelProperty(value = "还款申请流水")
|
private String repayApplyNo;
|
|
/**
|
* 是否发送验证码,-1发送验证码失败,0-不需要,既还款成功,1-发送短信验证码
|
*/
|
@ApiModelProperty(value = "短信是否发送成功")
|
private String needVerify;
|
}
|