bulletion.java

来自「是一个JSP与数据库应用系统」· Java 代码 · 共 64 行

JAVA
64
字号
package until;

public class bulletion
{
	private int id;
	private String title;
	private String author;
	private String content;
	private String datetimes;
	
	public bulletion()
	{
		id = 0;
		title = "";
		author = "";
		content = "";
		datetimes = "";
	}
	
	public int getId()
	{
		return id;
	}
	public void setId(int id)
	{
		this.id = id;
	}
	
	public String getTitle()
	{
		return title;
	}
	public void setTitle(String title)
	{
		this.title = title;
	}
	
	public String getAuthor()
	{
		return author;
	}
	public void setAuthor(String author)
	{
		this.author = author;
	}
	
	public String getContent()
	{
		return content;
	}
	public void setContent(String content)
	{
		this.content = content;
	}
	
	public String getDatetimes()
	{
		return datetimes;
	}
	public void setDatetimes(String datetimes)
	{
		this.datetimes = datetimes;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?