showbtree.java

来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 57 行

JAVA
57
字号
package com.je.ims.hibernate;



/**
 * ShowBtree generated by MyEclipse - Hibernate Tools
 */

public class ShowBtree  implements java.io.Serializable {


    // Fields    

     private ShowBtreeId id;
     private Long showId;


    // Constructors

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

    
    /** full constructor */
    public ShowBtree(Long showId) {
        this.showId = showId;
    }

   
    // Property accessors

    public ShowBtreeId getId() {
        return this.id;
    }
    
    public void setId(ShowBtreeId id) {
        this.id = id;
    }

    public Long getShowId() {
        return this.showId;
    }
    
    public void setShowId(Long showId) {
        this.showId = showId;
    }
   








}

⌨️ 快捷键说明

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