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