Pu Zhibing
2024-12-26 1dd7045966f82add2346aee6db8c7035e7f54d97
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.account.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2024/11/25 9:53
 */
@Data
@ApiModel
public class SMSCode {
    @ApiModelProperty("类型(1=登录注册)")
    private Integer type;
    @ApiModelProperty("手机号")
    private String phone;
}