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