新增RequestUser

master
MKing 2023-10-30 20:28:17 +08:00
parent 5230e5d0ba
commit 2d453b785c
1 changed files with 51 additions and 0 deletions

View File

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