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

📄 reply.java

📁 论坛元程序
💻 JAVA
字号:
package yy;

import java.io.*;
import java.sql.Date;

public class Reply
    implements Serializable {
  private int replyId;
  private int subjectId;
  private String replyTitle;
  private String replyContent;
  private Date replyTime;
  private String replyAurhor;
  private String replyPic;
  private int communityId;
  private String replyTopic;

  //所有的set方法
  public void setReplyId(int c) {
    this.replyId = c;
  }

  public void setSubjectId(int c) {
    this.subjectId = c;
  }

  public void setReplyTitle(String c) {
    this.replyTitle = c;
  }

  public void setReplyContent(String c) {
    this.replyContent = c;
  }

  public void setReplyTime(Date c) {
    this.replyTime = c;
  }

  /*public void setReplyTime(String c) {
    this.replyTime = c;
     }*/

  public void setReplyAuthor(String c) {
    this.replyAurhor = c;
  }

  public void setReplyPic(String c) {
    this.replyPic = c;
  }

  public void setCommunityId(int c) {
    this.communityId = c;
  }

  public void setReplyTopic(String c) {
    this.replyTopic = c;
  }

  //所有的get方法
  public int getReplyId() {
    return this.replyId;
  }

  public int getSubjectId() {
    return this.subjectId;
  }

  public String getReplyTitle() {
    return this.replyTitle;
  }

  public String getReplyContent() {
    return this.replyContent;
  }

  public Date getReplyTime() {
    return this.replyTime;
  }

  /*public String getReplyTime() {
    return this.replyTime;
     }*/

  public String getReplyAuthor() {
    return this.replyAurhor;
  }

  public String getReplyPic() {
    return this.replyPic;
  }

  public int getCommunityId() {
    return this.communityId;
  }

  public String getReplyTopic() {
    return this.replyTopic;
  }
}

⌨️ 快捷键说明

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