menu.java

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

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



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

public class Menu  implements java.io.Serializable {


    // Fields    

     private String menuId;
     private String menuName;
     private String baseItem;
     private Long showId;
     private Long isDirectory;
     private Long lvl;
     private String program;


    // Constructors

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

	/** minimal constructor */
    public Menu(String menuId, String menuName, String baseItem, Long showId, Long isDirectory, Long lvl) {
        this.menuId = menuId;
        this.menuName = menuName;
        this.baseItem = baseItem;
        this.showId = showId;
        this.isDirectory = isDirectory;
        this.lvl = lvl;
    }
    
    /** full constructor */
    public Menu(String menuId, String menuName, String baseItem, Long showId, Long isDirectory, Long lvl, String program) {
        this.menuId = menuId;
        this.menuName = menuName;
        this.baseItem = baseItem;
        this.showId = showId;
        this.isDirectory = isDirectory;
        this.lvl = lvl;
        this.program = program;
    }

   
    // Property accessors

    public String getMenuId() {
        return this.menuId;
    }
    
    public void setMenuId(String menuId) {
        this.menuId = menuId;
    }

    public String getMenuName() {
        return this.menuName;
    }
    
    public void setMenuName(String menuName) {
        this.menuName = menuName;
    }

    public String getBaseItem() {
        return this.baseItem;
    }
    
    public void setBaseItem(String baseItem) {
        this.baseItem = baseItem;
    }

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

    public Long getIsDirectory() {
        return this.isDirectory;
    }
    
    public void setIsDirectory(Long isDirectory) {
        this.isDirectory = isDirectory;
    }

    public Long getLvl() {
        return this.lvl;
    }
    
    public void setLvl(Long lvl) {
        this.lvl = lvl;
    }

    public String getProgram() {
        return this.program;
    }
    
    public void setProgram(String program) {
        this.program = program;
    }
   








}

⌨️ 快捷键说明

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