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

📄 reply.java

📁 Java项目 新闻管理系统 jsp+struts+hibernate 开发:eclipse+oracle9i+tomcat 高质量代码 导入数据即可用
💻 JAVA
字号:
package com.xdf.news.bean;



/**
 * Reply generated by MyEclipse - Hibernate Tools
 */

public class Reply  implements java.io.Serializable {


    // Fields    

     private Long replyid;
     private News news;
     private String name;
     private String content;


    // Constructors

    /** default constructor */
    public Reply() {
    }

    
    /** full constructor */
    public Reply(News news, String name, String content) {
        this.news = news;
        this.name = name;
        this.content = content;
    }

   
    // Property accessors

    public Long getReplyid() {
        return this.replyid;
    }
    
    public void setReplyid(Long replyid) {
        this.replyid = replyid;
    }

    public News getNews() {
        return this.news;
    }
    
    public void setNews(News news) {
        this.news = news;
    }

    public String getName() {
        return this.name;
    }
    
    public void setName(String name) {
        this.name = name;
    }

    public String getContent() {
        return this.content;
    }
    
    public void setContent(String content) {
        this.content = content;
    }
   








}

⌨️ 快捷键说明

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