com.github.obhen233.out.RuleInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of purslane-engine Show documentation
Show all versions of purslane-engine Show documentation
A rule engine,easy to expand,and easy to use.
The newest version!
package com.github.obhen233.out;
import java.io.Serializable;
import java.util.List;
public class RuleInfo implements Serializable {
private String function;
private String desc;
private String lang;
private List feilds;
public String getFunction() {
return function;
}
public void setFunction(String function) {
this.function = function;
}
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
public String getLang() {
return lang;
}
public void setLang(String lang) {
this.lang = lang;
}
public List getFeilds() {
return feilds;
}
public void setFeilds(List feilds) {
this.feilds = feilds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy