2
sunshine
2024-11-05 d1f9fb55a136e589a5ad588ed9a93ce9272917da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
 
}