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

📄 tjournal.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 TJournal implements Serializable {

    /** identifier field */
    private Integer tjouId;

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

    /** persistent field */
    private int tjouChab;

    /** nullable persistent field */
    private Date tjouCome;

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

    /** persistent field */
    private Date tjouDate;

    /** persistent field */
    private int tjouGhab;

    /** nullable persistent field */
    private Date tjouGo;

    /** nullable persistent field */
    private byte[] tjouGrea;

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

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

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

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

    /** full constructor */
    public TJournal(String flag, int tjouChab, Date tjouCome, String tjouCrea, Date tjouDate, int tjouGhab, Date tjouGo, byte[] tjouGrea, cn.hope.mana.pojo.CDutycon CDutyconC, cn.hope.mana.pojo.TInfo TInfoMaker, cn.hope.mana.pojo.CDutycon CDutyconG, cn.hope.mana.pojo.TInfo TInfoTeacher) {
        this.flag = flag;
        this.tjouChab = tjouChab;
        this.tjouCome = tjouCome;
        this.tjouCrea = tjouCrea;
        this.tjouDate = tjouDate;
        this.tjouGhab = tjouGhab;
        this.tjouGo = tjouGo;
        this.tjouGrea = tjouGrea;
        this.CDutyconC = CDutyconC;
        this.TInfoMaker = TInfoMaker;
        this.CDutyconG = CDutyconG;
        this.TInfoTeacher = TInfoTeacher;
    }

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

    /** minimal constructor */
    public TJournal(int tjouChab, Date tjouDate, int tjouGhab) {
        this.tjouChab = tjouChab;
        this.tjouDate = tjouDate;
        this.tjouGhab = tjouGhab;
    }

    public Integer getTjouId() {
        return this.tjouId;
    }

    public void setTjouId(Integer tjouId) {
        this.tjouId = tjouId;
    }

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

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

    public int getTjouChab() {
        return this.tjouChab;
    }

    public void setTjouChab(int tjouChab) {
        this.tjouChab = tjouChab;
    }

    public Date getTjouCome() {
        return this.tjouCome;
    }

    public void setTjouCome(Date tjouCome) {
        this.tjouCome = tjouCome;
    }

    public String getTjouCrea() {
        return this.tjouCrea;
    }

    public void setTjouCrea(String tjouCrea) {
        this.tjouCrea = tjouCrea;
    }

    public Date getTjouDate() {
        return this.tjouDate;
    }

    public void setTjouDate(Date tjouDate) {
        this.tjouDate = tjouDate;
    }

    public int getTjouGhab() {
        return this.tjouGhab;
    }

    public void setTjouGhab(int tjouGhab) {
        this.tjouGhab = tjouGhab;
    }

    public Date getTjouGo() {
        return this.tjouGo;
    }

    public void setTjouGo(Date tjouGo) {
        this.tjouGo = tjouGo;
    }

    public byte[] getTjouGrea() {
        return this.tjouGrea;
    }

    public void setTjouGrea(byte[] tjouGrea) {
        this.tjouGrea = tjouGrea;
    }

    public cn.hope.mana.pojo.CDutycon getCDutyconC() {
        return this.CDutyconC;
    }

    public void setCDutyconC(cn.hope.mana.pojo.CDutycon CDutyconC) {
        this.CDutyconC = CDutyconC;
    }

    public cn.hope.mana.pojo.TInfo getTInfoMaker() {
        return this.TInfoMaker;
    }

    public void setTInfoMaker(cn.hope.mana.pojo.TInfo TInfoMaker) {
        this.TInfoMaker = TInfoMaker;
    }

    public cn.hope.mana.pojo.CDutycon getCDutyconG() {
        return this.CDutyconG;
    }

    public void setCDutyconG(cn.hope.mana.pojo.CDutycon CDutyconG) {
        this.CDutyconG = CDutyconG;
    }

    public cn.hope.mana.pojo.TInfo getTInfoTeacher() {
        return this.TInfoTeacher;
    }

    public void setTInfoTeacher(cn.hope.mana.pojo.TInfo TInfoTeacher) {
        this.TInfoTeacher = TInfoTeacher;
    }

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

}

⌨️ 快捷键说明

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