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

📄 cdutycon.java

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

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


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

    /** identifier field */
    private Integer cdId;

    /** persistent field */
    private String cdName;

    /** persistent field */
    private String flag;

    /** persistent field */
    private Set SJournalCs;

    /** persistent field */
    private Set SJournalGs;

    /** persistent field */
    private Set TJournalCs;

    /** persistent field */
    private Set TJournalGs;

    /** full constructor */
    public CDutycon(String cdName, String flag, Set SJournalCs, Set SJournalGs, Set TJournalCs, Set TJournalGs) {
        this.cdName = cdName;
        this.flag = flag;
        this.SJournalCs = SJournalCs;
        this.SJournalGs = SJournalGs;
        this.TJournalCs = TJournalCs;
        this.TJournalGs = TJournalGs;
    }

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

    public Integer getCdId() {
        return this.cdId;
    }

    public void setCdId(Integer cdId) {
        this.cdId = cdId;
    }

    public String getCdName() {
        return this.cdName;
    }

    public void setCdName(String cdName) {
        this.cdName = cdName;
    }

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

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

    public Set getSJournalCs() {
        return this.SJournalCs;
    }

    public void setSJournalCs(Set SJournalCs) {
        this.SJournalCs = SJournalCs;
    }

    public Set getSJournalGs() {
        return this.SJournalGs;
    }

    public void setSJournalGs(Set SJournalGs) {
        this.SJournalGs = SJournalGs;
    }

    public Set getTJournalCs() {
        return this.TJournalCs;
    }

    public void setTJournalCs(Set TJournalCs) {
        this.TJournalCs = TJournalCs;
    }

    public Set getTJournalGs() {
        return this.TJournalGs;
    }

    public void setTJournalGs(Set TJournalGs) {
        this.TJournalGs = TJournalGs;
    }

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

}

⌨️ 快捷键说明

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