shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package com.ishop.mobile.pojo;
 
import com.walker.web.param.ParamRequest;
 
/**
 * 移动端登录请求参数。
 * @author 时克英
 * @date 2023-06-28
 */
public class LoginParam extends ParamRequest {
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getCaptcha() {
        return captcha;
    }
 
    public void setCaptcha(String captcha) {
        this.captcha = captcha;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
 
    public Long getSpreadPid() {
        return spreadPid;
    }
 
    public void setSpreadPid(Long spreadPid) {
        this.spreadPid = spreadPid;
    }
 
    public String getUuid() {
        return uuid;
    }
 
    public void setUuid(String uuid) {
        this.uuid = uuid;
    }
 
    private String uuid;
 
    //    @ApiModelProperty(value = "手机号", required = true)
//    @NotBlank(message = "手机号不能为空")
//    @Pattern(regexp = RegularConstants.PHONE_TWO, message = "手机号码格式错误")
    private String phone;
 
//    @ApiModelProperty(value = "验证码", required = true)
//    @Pattern(regexp = RegularConstants.VALIDATE_CODE_NUM_SIX, message = "验证码格式错误,验证码必须为6位数字")
    private String captcha;
 
//    @ApiModelProperty(value = "密码", required = true, example = "1~[6,18]")
    private String password;
 
//    @ApiModelProperty(value = "推广人id")
    private Long spreadPid;
 
    @Override
    public String toString() {
        return "LoginParam{" +
                "uuid='" + uuid + '\'' +
                ", phone='" + phone + '\'' +
                ", captcha='" + captcha + '\'' +
                ", password='" + password + '\'' +
                ", spreadPid=" + spreadPid +
                '}';
    }
}