⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 commenttable.java

📁 简单的新闻发布系统 jsp+tomcat
💻 JAVA
字号:
package xwfb;

public class commentTable
{
	private String id = "";
	private String newsid = "";
	private String commentdate = "";
	private String author = "";
	private String commentauthor = "";
	private String commentcontent = "";
  public String getAuthor() {
    return author;
  }
  public void setAuthor(String author) {
  	if(author != null)
    this.author = author;
  }
  public String getCommentauthor() {
    return commentauthor;
  }
  public void setCommentauthor(String commentauthor) {
  	if(commentauthor != null)
    this.commentauthor = commentauthor;
  }
  public String getCommentcontent() {
    return commentcontent;
  }
  public void setCommentcontent(String commentcontent) {
  	if(commentcontent != null)
    this.commentcontent = commentcontent;
  }
  public void setCommentdate(String commentdate) {
  	if(commentdate != null)
    this.commentdate = commentdate;
  }
  public String getCommentdate() {
    return commentdate;
  }
  public String getId() {
    return id;
  }
  public void setId(String id) {
  	if(id != null)
    this.id = id;
  }
  public void setNewsid(String newsid) {
  	if(newsid != null)
    this.newsid = newsid;
  }
  public String getNewsid() {
    return newsid;
  }
}

⌨️ 快捷键说明

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