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

📄 function.java

📁 检测CPU 内存的 检测CPU 内存的
💻 JAVA
字号:
package com.m2.entity;



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

public class Function  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private String name;
     private String resource;
     private String params;
     private String description;
     private FuncTree funcTree;


    // Constructors

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

    
    /** full constructor */
    public Function(String name, String resource, String params, String description, FuncTree funcTree) {
        this.name = name;
        this.resource = resource;
        this.params = params;
        this.description = description;
        this.funcTree = funcTree;
    }

   
    // Property accessors

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

    public String getName() {
        return this.name;
    }
    
    public void setName(String name) {
        this.name = name;
    }

    public String getResource() {
        return this.resource;
    }
    
    public void setResource(String resource) {
        this.resource = resource;
    }

    public String getParams() {
        return this.params;
    }
    
    public void setParams(String params) {
        this.params = params;
    }

    public String getDescription() {
        return this.description;
    }
    
    public void setDescription(String description) {
        this.description = description;
    }

    public FuncTree getFuncTree() {
        return this.funcTree;
    }
    
    public void setFuncTree(FuncTree funcTree) {
        this.funcTree = funcTree;
    }
   








}

⌨️ 快捷键说明

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