Compare commits

..

No commits in common. "7198e22ab9f85bc5d166274584626d1d91fc8e7e" and "31c93f2fd32162f4821c30eafad970faaeda0f37" have entirely different histories.

1 changed files with 0 additions and 51 deletions

View File

@ -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;
}
}