3 changed files with 75 additions and 3 deletions
@ -0,0 +1,69 @@ |
|||||
|
package com.ruoyi.framework.security; |
||||
|
|
||||
|
/** |
||||
|
* 用户登录对象 |
||||
|
* |
||||
|
* @author ruoyi |
||||
|
*/ |
||||
|
public class LoginBody |
||||
|
{ |
||||
|
/** |
||||
|
* 用户名 |
||||
|
*/ |
||||
|
private String username; |
||||
|
|
||||
|
/** |
||||
|
* 用户密码 |
||||
|
*/ |
||||
|
private String password; |
||||
|
|
||||
|
/** |
||||
|
* 验证码 |
||||
|
*/ |
||||
|
private String code; |
||||
|
|
||||
|
/** |
||||
|
* 唯一标识 |
||||
|
*/ |
||||
|
private String uuid = ""; |
||||
|
|
||||
|
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; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue