
cn.micro.core.util.BeanProperty Maven / Gradle / Ivy
package cn.micro.core.util;
/**
* Bean属性
*/
public class BeanProperty {
private final String name;
private final Class> type;
public BeanProperty(String name, Class> type) {
this.name = name;
this.type = type;
}
public String getName() {
return name;
}
public Class> getType() {
return type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy