Pu Zhibing
4 天以前 4c4dc127cdc9c41f2bfb3c138108529856e031b8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.supersavedriving.user.modular.system.warpper;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2025/8/4 16:29
 */
@Data
public class VerificationCodeLogin {
    @ApiModelProperty(value = "微信jscode", required = true, dataType = "string")
    private String jscode;
    @ApiModelProperty(value = "手机号", required = true, dataType = "string")
    private String phone;
    @ApiModelProperty(value = "验证码", required = true, dataType = "string")
    private String code;
    @ApiModelProperty(value = "邀约人类型(1=用户,2=司机)", required = false, dataType = "int")
    private Integer inviterType;
    @ApiModelProperty(value = "邀约人id", required = false, dataType = "int")
    private Integer inviterId;
    @ApiModelProperty(value = "区域code", required = false, dataType = "string")
    private String areaCode;
}