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.
19 lines
347 B
19 lines
347 B
6 years ago
|
package com.fanruan.api.structure;
|
||
|
|
||
|
/**
|
||
|
* 参数,参数是可以动态赋值的对象
|
||
|
*/
|
||
|
public class Parameter extends com.fr.base.Parameter {
|
||
|
public Parameter() {
|
||
|
super();
|
||
|
}
|
||
|
|
||
|
public Parameter(String text) {
|
||
|
super(text);
|
||
|
}
|
||
|
|
||
|
public Parameter(String name, Object value) {
|
||
|
super(name, value);
|
||
|
}
|
||
|
}
|