package com.yeshi.location.app.dto.user;
|
|
import com.yeshi.location.app.entity.SystemEnum;
|
|
/**
|
* @author hxh
|
* @title: LoginInfo
|
* @description: 登录信息
|
* @date 2021/11/15 17:59
|
*/
|
public class LoginInfoDTO {
|
private int loginType;
|
private SystemEnum system;
|
private String ipInfo;
|
private String phone;
|
private String vcode;
|
//号码认证信息
|
private String phoneAuthInfo;
|
private String email;
|
private String pwd;
|
private String wxCode;
|
private String qqCode;
|
|
|
public int getLoginType() {
|
return loginType;
|
}
|
|
public void setLoginType(int loginType) {
|
this.loginType = loginType;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getVcode() {
|
return vcode;
|
}
|
|
public void setVcode(String vcode) {
|
this.vcode = vcode;
|
}
|
|
public String getEmail() {
|
return email;
|
}
|
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
|
public String getPwd() {
|
return pwd;
|
}
|
|
public void setPwd(String pwd) {
|
this.pwd = pwd;
|
}
|
|
public String getWxCode() {
|
return wxCode;
|
}
|
|
public void setWxCode(String wxCode) {
|
this.wxCode = wxCode;
|
}
|
|
public String getQqCode() {
|
return qqCode;
|
}
|
|
public void setQqCode(String qqCode) {
|
this.qqCode = qqCode;
|
}
|
|
public String getIpInfo() {
|
return ipInfo;
|
}
|
|
public void setIpInfo(String ipInfo) {
|
this.ipInfo = ipInfo;
|
}
|
|
public String getPhoneAuthInfo() {
|
return phoneAuthInfo;
|
}
|
|
public void setPhoneAuthInfo(String phoneAuthInfo) {
|
this.phoneAuthInfo = phoneAuthInfo;
|
}
|
|
public SystemEnum getSystem() {
|
return system;
|
}
|
|
public void setSystem(SystemEnum system) {
|
this.system = system;
|
}
|
}
|