📄 commentform.java
字号:
package struts.form;
import org.apache.struts.action.ActionForm;
public class CommentForm extends ActionForm {
private int id;
private String name=null;
private String title=null;
private String text=null;
private String floor=null;
private String type=null;
private String certcode=null;
public String getCertcode() {
return certcode;
}
public void setCertcode(String certcode) {
this.certcode = certcode;
}
public String getFloor() {
return floor;
}
public void setFloor(String floor) {
this.floor =floor;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -