myjf007
2024-11-04 627b61d17da1dbf02c0363c659b728627dd42890
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
package com.nova.sankuai.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 */
@Data
public class LoginUserDto {
 
    @ApiModelProperty(value = "用户名")
    private String userName;
 
    @ApiModelProperty(value = "密码")
    private String password;
 
    @ApiModelProperty(value = "手机号")
    private String phone;
 
    @ApiModelProperty(value = "验证码")
    private String verificationCode;
 
    @ApiModelProperty(value = "渠道")
    private Integer source;
 
    @ApiModelProperty(value = "渠道Id")
    private String appId;
 
    @ApiModelProperty(value = "设备信息 0-pc 1-android 2-ios")
    private Integer device;
 
    @ApiModelProperty(value = "登录来源 0为H5, 1为APP")
    private Integer loginSource;
 
}