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/12
|
*/
|
@ApiModel(value = "用信信息传输接口响应Vo")
|
@Data
|
public class YxLoanApplyResponse extends YXResponse {
|
|
@ApiModelProperty(value = "需要校验验证码,并触发短信")
|
public static final String NEED_SEND = "1";
|
@ApiModelProperty(value = "不需要发短信")
|
public static final String NOT_SEND = "0";
|
|
/**
|
* 0 不需要发短信
|
* 1 需要校验验证码,并触发短信
|
*/
|
@ApiModelProperty(value = "是否需要输入验证码")
|
private String needVerifyCode;
|
|
}
|