mitao
2024-06-06 3d2b51ea4520533de5e78f88dddf5b5c7dce4247
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
package com.sinata.rest.modular.member.controller.common.body;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "注册参数")
public class BodyRegister {
 
    @ApiModelProperty(value = "注册手机号", required = true)
    public String phone;
 
    @ApiModelProperty(value = "验证码", required = true)
    public String code;
 
    @ApiModelProperty(value = "密码", required = true)
    public String password;
 
    @ApiModelProperty(value = "城市码(直接传原始的,不需要替换后两位00)", required = true)
    public String cityCode;
 
    @ApiModelProperty(value = "邀请用户ID")
    public Integer shareUserId;
 
    @ApiModelProperty(value = "微信OpenID")
    private String wxOpenId;
 
}