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

📄 msy.java

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

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


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

    /** identifier field */
    private Integer SId;

    /** persistent field */
    private String backClose;

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

    /** persistent field */
    private int diskSize;

    /** persistent field */
    private String flag;

    /** persistent field */
    private String frontClose;

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

    /** persistent field */
    private String logValidate;

    /** persistent field */
    private int noteCount;

    /** persistent field */
    private int pageCount;

    /** full constructor */
    public MSy(String backClose, String backInf, int diskSize, String flag, String frontClose, String frontInf, String logValidate, int noteCount, int pageCount) {
        this.backClose = backClose;
        this.backInf = backInf;
        this.diskSize = diskSize;
        this.flag = flag;
        this.frontClose = frontClose;
        this.frontInf = frontInf;
        this.logValidate = logValidate;
        this.noteCount = noteCount;
        this.pageCount = pageCount;
    }

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

    /** minimal constructor */
    public MSy(String backClose, int diskSize, String flag, String frontClose, String logValidate, int noteCount, int pageCount) {
        this.backClose = backClose;
        this.diskSize = diskSize;
        this.flag = flag;
        this.frontClose = frontClose;
        this.logValidate = logValidate;
        this.noteCount = noteCount;
        this.pageCount = pageCount;
    }

    public Integer getSId() {
        return this.SId;
    }

    public void setSId(Integer SId) {
        this.SId = SId;
    }

    public String getBackClose() {
        return this.backClose;
    }

    public void setBackClose(String backClose) {
        this.backClose = backClose;
    }

    public String getBackInf() {
        return this.backInf;
    }

    public void setBackInf(String backInf) {
        this.backInf = backInf;
    }

    public int getDiskSize() {
        return this.diskSize;
    }

    public void setDiskSize(int diskSize) {
        this.diskSize = diskSize;
    }

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

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

    public String getFrontClose() {
        return this.frontClose;
    }

    public void setFrontClose(String frontClose) {
        this.frontClose = frontClose;
    }

    public String getFrontInf() {
        return this.frontInf;
    }

    public void setFrontInf(String frontInf) {
        this.frontInf = frontInf;
    }

    public String getLogValidate() {
        return this.logValidate;
    }

    public void setLogValidate(String logValidate) {
        this.logValidate = logValidate;
    }

    public int getNoteCount() {
        return this.noteCount;
    }

    public void setNoteCount(int noteCount) {
        this.noteCount = noteCount;
    }

    public int getPageCount() {
        return this.pageCount;
    }

    public void setPageCount(int pageCount) {
        this.pageCount = pageCount;
    }

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

}

⌨️ 快捷键说明

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