📄 messageform.java
字号:
package tarena.form;
import org.apache.struts.action.ActionForm;
@SuppressWarnings("serial")
public class MessageForm extends ActionForm {
private String receivename;
private String title;
private String msgContent;
private Byte messtype;
private Byte typevalue;
public String getReceivename() {
return receivename;
}
public void setReceivename(String receivename) {
this.receivename = receivename;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getMsgContent() {
return msgContent;
}
public void setMsgContent(String msgContent) {
this.msgContent = msgContent;
}
public Byte getMesstype() {
return messtype;
}
public void setMesstype(Byte messtype) {
this.messtype = messtype;
}
public Byte getTypevalue() {
return typevalue;
}
public void setTypevalue(Byte typevalue) {
this.typevalue = typevalue;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -