package com.zhitan.common.core.domain.model;
|
|
/**
|
* 用户登录对象
|
*
|
* @author zhitan
|
*/
|
public class LoginBody
|
{
|
/**
|
* 用户名
|
*/
|
private String username;
|
|
/**
|
* 用户密码
|
*/
|
private String password;
|
|
/**
|
* 验证码
|
*/
|
private String code;
|
|
/**
|
* 唯一标识
|
*/
|
private String uuid;
|
|
private String socialState;
|
|
private String socialCode;
|
|
private String source;
|
|
|
private String grantType;
|
|
public String getSocialState() {
|
return socialState;
|
}
|
|
public void setSocialState(String socialState) {
|
this.socialState = socialState;
|
}
|
|
public String getSocialCode() {
|
return socialCode;
|
}
|
|
public void setSocialCode(String socialCode) {
|
this.socialCode = socialCode;
|
}
|
|
public String getSource() {
|
return source;
|
}
|
|
public void setSource(String source) {
|
this.source = source;
|
}
|
|
public String getGrantType() {
|
return grantType;
|
}
|
|
public void setGrantType(String grantType) {
|
this.grantType = grantType;
|
}
|
|
public String getUsername()
|
{
|
return username;
|
}
|
|
public void setUsername(String username)
|
{
|
this.username = username;
|
}
|
|
public String getPassword()
|
{
|
return password;
|
}
|
|
public void setPassword(String password)
|
{
|
this.password = password;
|
}
|
|
public String getCode()
|
{
|
return code;
|
}
|
|
public void setCode(String code)
|
{
|
this.code = code;
|
}
|
|
public String getUuid()
|
{
|
return uuid;
|
}
|
|
public void setUuid(String uuid)
|
{
|
this.uuid = uuid;
|
}
|
}
|