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

📄 ttestinfo.java

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

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


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

    /** identifier field */
    private Integer TTestid;

    /** persistent field */
    private String flag;

    /** persistent field */
    private Date TTestdate;

    /** persistent field */
    private String TTestname;

    /** persistent field */
    private int TTestpoint;

    /** persistent field */
    private int TTesttime;

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

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

    /** persistent field */
    private Set SGrades;

    /** persistent field */
    private Set TClassTests;

    /** persistent field */
    private Set TTests;

    /** full constructor */
    public TTestInfo(String flag, Date TTestdate, String TTestname, int TTestpoint, int TTesttime, cn.hope.mana.pojo.TInfo TInfo, cn.hope.mana.pojo.CSubject CSubject, Set SGrades, Set TClassTests, Set TTests) {
        this.flag = flag;
        this.TTestdate = TTestdate;
        this.TTestname = TTestname;
        this.TTestpoint = TTestpoint;
        this.TTesttime = TTesttime;
        this.TInfo = TInfo;
        this.CSubject = CSubject;
        this.SGrades = SGrades;
        this.TClassTests = TClassTests;
        this.TTests = TTests;
    }

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

    /** minimal constructor */
    public TTestInfo(String flag, Date TTestdate, String TTestname, int TTestpoint, int TTesttime, Set SGrades, Set TClassTests, Set TTests) {
        this.flag = flag;
        this.TTestdate = TTestdate;
        this.TTestname = TTestname;
        this.TTestpoint = TTestpoint;
        this.TTesttime = TTesttime;
        this.SGrades = SGrades;
        this.TClassTests = TClassTests;
        this.TTests = TTests;
    }

    public Integer getTTestid() {
        return this.TTestid;
    }

    public void setTTestid(Integer TTestid) {
        this.TTestid = TTestid;
    }

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

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

    public Date getTTestdate() {
        return this.TTestdate;
    }

    public void setTTestdate(Date TTestdate) {
        this.TTestdate = TTestdate;
    }

    public String getTTestname() {
        return this.TTestname;
    }

    public void setTTestname(String TTestname) {
        this.TTestname = TTestname;
    }

    public int getTTestpoint() {
        return this.TTestpoint;
    }

    public void setTTestpoint(int TTestpoint) {
        this.TTestpoint = TTestpoint;
    }

    public int getTTesttime() {
        return this.TTesttime;
    }

    public void setTTesttime(int TTesttime) {
        this.TTesttime = TTesttime;
    }

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

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

    public cn.hope.mana.pojo.CSubject getCSubject() {
        return this.CSubject;
    }

    public void setCSubject(cn.hope.mana.pojo.CSubject CSubject) {
        this.CSubject = CSubject;
    }

    public Set getSGrades() {
        return this.SGrades;
    }

    public void setSGrades(Set SGrades) {
        this.SGrades = SGrades;
    }

    public Set getTClassTests() {
        return this.TClassTests;
    }

    public void setTClassTests(Set TClassTests) {
        this.TClassTests = TClassTests;
    }

    public Set getTTests() {
        return this.TTests;
    }

    public void setTTests(Set TTests) {
        this.TTests = TTests;
    }

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

}

⌨️ 快捷键说明

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