commentform.java

来自「bbs论坛系统」· Java 代码 · 共 60 行

JAVA
60
字号
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 + =
减小字号Ctrl + -
显示快捷键?