📄 commentform.java
字号:
package org.whatisjava.dang.form;import org.apache.struts.action.ActionForm;public class CommentForm extends ActionForm implements java.io.Serializable{ private static final long serialVersionUID = -4786495614395189861L; private Integer productId; private String commentTitle; private String commentContent; public String getCommentContent() { return commentContent; } public void setCommentContent(String commentContent) { this.commentContent = commentContent; } public String getCommentTitle() { return commentTitle; } public void setCommentTitle(String commentTitle) { this.commentTitle = commentTitle; } public Integer getProductId() { return productId; } public void setProductId(Integer productId) { this.productId = productId; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -