Compare commits
No commits in common. "7198e22ab9f85bc5d166274584626d1d91fc8e7e" and "31c93f2fd32162f4821c30eafad970faaeda0f37" have entirely different histories.
7198e22ab9
...
31c93f2fd3
|
@ -1,51 +0,0 @@
|
||||||
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