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

📄 crefourm.java

📁 持久层hibernate技术使用的一个例子
💻 JAVA
字号:
package cn.hope.front.pojo;

import java.io.Serializable;
import java.util.Date;
import org.apache.commons.lang.builder.ToStringBuilder;


/** @author Hibernate CodeGenerator */
public class CRefourm implements Serializable {

    /** identifier field */
    private Integer TResponsesid;

    /** persistent field */
    private String flag;

    /** persistent field */
    private String TContent;

    /** persistent field */
    private Date TTime;

    /** nullable persistent field */
    private cn.hope.front.pojo.Student student;

    /** nullable persistent field */
    private cn.hope.front.pojo.CFourm CFourm;

    /** nullable persistent field */
    private cn.hope.front.pojo.TInfo TInfo;

    /** full constructor */
    public CRefourm(String flag, String TContent, Date TTime, cn.hope.front.pojo.Student student, cn.hope.front.pojo.CFourm CFourm, cn.hope.front.pojo.TInfo TInfo) {
        this.flag = flag;
        this.TContent = TContent;
        this.TTime = TTime;
        this.student = student;
        this.CFourm = CFourm;
        this.TInfo = TInfo;
    }

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

    /** minimal constructor */
    public CRefourm(String flag, String TContent, Date TTime) {
        this.flag = flag;
        this.TContent = TContent;
        this.TTime = TTime;
    }

    public Integer getTResponsesid() {
        return this.TResponsesid;
    }

    public void setTResponsesid(Integer TResponsesid) {
        this.TResponsesid = TResponsesid;
    }

    public String getFlag() {
        return this.flag;
    }

    public void setFlag(String flag) {
        this.flag = flag;
    }

    public String getTContent() {
        return this.TContent;
    }

    public void setTContent(String TContent) {
        this.TContent = TContent;
    }

    public Date getTTime() {
        return this.TTime;
    }

    public void setTTime(Date TTime) {
        this.TTime = TTime;
    }

    public cn.hope.front.pojo.Student getStudent() {
        return this.student;
    }

    public void setStudent(cn.hope.front.pojo.Student student) {
        this.student = student;
    }

    public cn.hope.front.pojo.CFourm getCFourm() {
        return this.CFourm;
    }

    public void setCFourm(cn.hope.front.pojo.CFourm CFourm) {
        this.CFourm = CFourm;
    }

    public cn.hope.front.pojo.TInfo getTInfo() {
        return this.TInfo;
    }

    public void setTInfo(cn.hope.front.pojo.TInfo TInfo) {
        this.TInfo = TInfo;
    }

    public String toString() {
        return new ToStringBuilder(this)
            .append("TResponsesid", getTResponsesid())
            .toString();
    }

}

⌨️ 快捷键说明

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