forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1008 B
46 lines
1008 B
5 years ago
|
package com.fanruan.api.function.shell;
|
||
|
|
||
|
import com.fr.stable.StringUtils;
|
||
|
|
||
|
/**
|
||
|
* 自定义函数封装
|
||
|
*/
|
||
|
public class FineFunc {
|
||
|
private String name;//函数名
|
||
|
private String description;//描述
|
||
|
private String className;//完整类名
|
||
|
|
||
|
public FineFunc(String name, String description, String className) {
|
||
|
this.name = name;
|
||
|
this.description = description;
|
||
|
this.className = className;
|
||
|
}
|
||
|
|
||
|
public FineFunc(String name, String className) {
|
||
|
this(name, StringUtils.EMPTY, className);
|
||
|
}
|
||
|
|
||
|
public String getName() {
|
||
|
return name;
|
||
|
}
|
||
|
|
||
|
public void setName(String name) {
|
||
|
this.name = name;
|
||
|
}
|
||
|
|
||
|
public String getDescription() {
|
||
|
return description;
|
||
|
}
|
||
|
|
||
|
public void setDescription(String description) {
|
||
|
this.description = description;
|
||
|
}
|
||
|
|
||
|
public String getClassName() {
|
||
|
return className;
|
||
|
}
|
||
|
|
||
|
public void setClassName(String className) {
|
||
|
this.className = className;
|
||
|
}
|
||
|
}
|