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

📄 replytopic.java

📁 spring+hibernate+struts开发的校务oa系统
💻 JAVA
字号:
package com.yondor.oa.db.replytopic.dao;

import java.util.Date;

import com.yondor.oa.db.bbsuser.dao.Bbsuser;
import com.yondor.oa.db.topic.dao.Topic;


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

public class Replytopic  implements java.io.Serializable {


    // Fields    

     private Long replytopicid;
     private Topic topic;
     private Bbsuser bbsuser;
     private Long content;
     private Date replytime;
     private String face;
     private String temp;


    // Constructors

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

	/** minimal constructor */
    public Replytopic(Topic topic, Bbsuser bbsuser) {
        this.topic = topic;
        this.bbsuser = bbsuser;
    }
    
    /** full constructor */
    public Replytopic(Topic topic, Bbsuser bbsuser, Long content, Date replytime, String face, String temp) {
        this.topic = topic;
        this.bbsuser = bbsuser;
        this.content = content;
        this.replytime = replytime;
        this.face = face;
        this.temp = temp;
    }

   
    // Property accessors

    public Long getReplytopicid() {
        return this.replytopicid;
    }
    
    public void setReplytopicid(Long replytopicid) {
        this.replytopicid = replytopicid;
    }

    public Topic getTopic() {
        return this.topic;
    }
    
    public void setTopic(Topic topic) {
        this.topic = topic;
    }

    public Bbsuser getBbsuser() {
        return this.bbsuser;
    }
    
    public void setBbsuser(Bbsuser bbsuser) {
        this.bbsuser = bbsuser;
    }

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

    public Date getReplytime() {
        return this.replytime;
    }
    
    public void setReplytime(Date replytime) {
        this.replytime = replytime;
    }

    public String getFace() {
        return this.face;
    }
    
    public void setFace(String face) {
        this.face = face;
    }

    public String getTemp() {
        return this.temp;
    }
    
    public void setTemp(String temp) {
        this.temp = temp;
    }
   








}

⌨️ 快捷键说明

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