提供测试使用的加解密验证工具🔧
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

36 lines
565 B

package com.fr.password.bean;
/**
* desc
*
* @author Anner
* created on 2020-11-10
*/
public class RequestBean {
private String key;
private String text;
public RequestBean() {
}
public RequestBean(String key, String text) {
this.key = key;
this.text = text;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
}