com.duoec.doc.doclet.pojo.AnnotationParam Maven / Gradle / Ivy
The newest version!
package com.duoec.doc.doclet.pojo;
import java.io.Serializable;
import java.util.List;
/**
* @author xuwenzhen
*/
public class AnnotationParam implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 参数名称
*/
private String name;
/**
* 参数值
*/
private List values;
/**
* 参数值类型
*/
private String valueType;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List getValues() {
return values;
}
public void setValues(List values) {
this.values = values;
}
public String getValueType() {
return valueType;
}
public void setValueType(String valueType) {
this.valueType = valueType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy