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

📄 topic.java

📁 用java实现的一个论坛,可以供大家参考
💻 JAVA
字号:
/*******************************************************************\*                                                                   **			   LightningBoard			    **                                                                   **          http://sourceforge.net/projects/lightningboard/          **			                                            **	            Copyright (c) 2002 Xiaobo Liu	            **                                                                   ***********************************************************************                        LICENSE INFORMATION                        **                                                                   **  LightningBoard is free software; you can redistribute it and/or  **  modify it under the terms of the GNU General Public License as   **  published by the Free Software Foundation; either version 2 of   **  the License, or any later version.                               **                                                                   **  We don't charge anything for the use of LightningBoard, we only  **  require you to keep the copyright present on your site and in    **  the source files.                                                **                                                                   **  LightningBoard is distributed in the hope that it will be useful,**  but without any warranty; without even the implied warranty of   **  merchantability or fitness for a particular purpose. See the GNU **  General Public License for more details.                         **                                                                   *\*******************************************************************/package liuxiaobo.lb.bean;import java.io.Serializable;public class Topic implements Serializable{  private String t_id;  private String t_name;  private String t_replies;  private String u_name;  private String u_name2;  private String t_lasttime;  private String t_u_id;  private String t_u_id2;  private String t_views;  public void setT_id(String t_id) {    this.t_id = t_id;  }  public String getT_id() {    return t_id;  }  public void setT_name(String t_name) {    this.t_name = t_name;  }  public String getT_name() {    return t_name;  }  public void setT_replies(String t_replies) {    this.t_replies = t_replies;  }  public String getT_replies() {    return t_replies;  }  public void setU_name(String u_name) {    this.u_name = u_name;  }  public String getU_name() {    return u_name;  }  public void setU_name2(String u_name2) {    this.u_name2 = u_name2;  }  public String getU_name2() {    return u_name2;  }  public void setT_lasttime(String t_lasttime) {    this.t_lasttime = t_lasttime;  }  public String getT_lasttime() {    return t_lasttime;  }  public void setT_u_id(String t_u_id) {    this.t_u_id = t_u_id;  }  public String getT_u_id() {    return t_u_id;  }  public void setT_u_id2(String t_u_id2) {    this.t_u_id2 = t_u_id2;  }  public String getT_u_id2() {    return t_u_id2;  }  public void setT_views(String t_views) {    this.t_views = t_views;  }  public String getT_views() {    return t_views;  }}

⌨️ 快捷键说明

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