Air
2024-11-04 29c405353029f033e187e8dc033b93385365ee43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.nova.sankuai.domain.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/7/15
 */
@Data
@ApiModel(value = "豆豆钱绑卡Vo")
public class DdqBindCardVo {
 
    @ApiModelProperty(value = "是否需要短信验证码 ")
    private boolean needVerify;
}