📄 comment.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -