新增RequestUser
parent
5230e5d0ba
commit
2d453b785c
|
@ -0,0 +1,51 @@
|
|||
package com.four.common.duck.request;
|
||||
|
||||
public class UserRequest {
|
||||
/**
|
||||
* 用户名称
|
||||
*/
|
||||
private String username;
|
||||
|
||||
/**
|
||||
*用户密码
|
||||
*/
|
||||
private String password;
|
||||
|
||||
/**
|
||||
* 发送内容
|
||||
*/
|
||||
private String msg;
|
||||
|
||||
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 getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public UserRequest() {
|
||||
}
|
||||
|
||||
public UserRequest(String username, String password, String msg) {
|
||||
this.username = username;
|
||||
this.password = password;
|
||||
this.msg = msg;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue