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

📄 srehw.java

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

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


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

    /** identifier field */
    private Integer srhId;

    /** persistent field */
    private String flag;

    /** persistent field */
    private Date reTime;

    /** nullable persistent field */
    private String SHwadd;

    /** nullable persistent field */
    private String SHwcheckinf;

    /** persistent field */
    private String SHwcontent;

    /** nullable persistent field */
    private Integer SHwpoint;

    /** persistent field */
    private String SStats;

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

    /** nullable persistent field */
    private cn.hope.mana.pojo.THomework THomework;

    /** full constructor */
    public SRehw(String flag, Date reTime, String SHwadd, String SHwcheckinf, String SHwcontent, Integer SHwpoint, String SStats, cn.hope.mana.pojo.Student student, cn.hope.mana.pojo.THomework THomework) {
        this.flag = flag;
        this.reTime = reTime;
        this.SHwadd = SHwadd;
        this.SHwcheckinf = SHwcheckinf;
        this.SHwcontent = SHwcontent;
        this.SHwpoint = SHwpoint;
        this.SStats = SStats;
        this.student = student;
        this.THomework = THomework;
    }

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

    /** minimal constructor */
    public SRehw(String flag, Date reTime, String SHwcontent, String SStats) {
        this.flag = flag;
        this.reTime = reTime;
        this.SHwcontent = SHwcontent;
        this.SStats = SStats;
    }

    public Integer getSrhId() {
        return this.srhId;
    }

    public void setSrhId(Integer srhId) {
        this.srhId = srhId;
    }

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

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

    public Date getReTime() {
        return this.reTime;
    }

    public void setReTime(Date reTime) {
        this.reTime = reTime;
    }

    public String getSHwadd() {
        return this.SHwadd;
    }

    public void setSHwadd(String SHwadd) {
        this.SHwadd = SHwadd;
    }

    public String getSHwcheckinf() {
        return this.SHwcheckinf;
    }

    public void setSHwcheckinf(String SHwcheckinf) {
        this.SHwcheckinf = SHwcheckinf;
    }

    public String getSHwcontent() {
        return this.SHwcontent;
    }

    public void setSHwcontent(String SHwcontent) {
        this.SHwcontent = SHwcontent;
    }

    public Integer getSHwpoint() {
        return this.SHwpoint;
    }

    public void setSHwpoint(Integer SHwpoint) {
        this.SHwpoint = SHwpoint;
    }

    public String getSStats() {
        return this.SStats;
    }

    public void setSStats(String SStats) {
        this.SStats = SStats;
    }

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

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

    public cn.hope.mana.pojo.THomework getTHomework() {
        return this.THomework;
    }

    public void setTHomework(cn.hope.mana.pojo.THomework THomework) {
        this.THomework = THomework;
    }

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

}

⌨️ 快捷键说明

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