title.java
来自「一个JAVA做的博客系统。系统采用JSP + JS + TOMCAT + MYS」· Java 代码 · 共 53 行
JAVA
53 行
package essay;
public class Title
{
int id;
String username, title, date;
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 getUsername()
{
return username;
}
public void setUsername(String username)
{
this.username = username;
}
public String getDate()
{
return date;
}
public void setDate(String date)
{
this.date = date;
}
public Title()
{ }
public Title(String username, String title)
{
this.username = username;
this.title = title;
}
public Title(int id, String username, String title, String date)
{
this.id = id;
this.username = username;
this.title = title;
this.date = date;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?