All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mars.core.model.MarsBeanClassModel Maven / Gradle / Ivy

There is a newer version: 3.3.3
Show newest version
package com.mars.core.model;

/**
 * 储存扫描出来的类
 */
public class MarsBeanClassModel {

    private Class className;

    private Object annotation;

    public Class getClassName() {
        return className;
    }

    public void setClassName(Class className) {
        this.className = className;
    }

    public Object getAnnotation() {
        return annotation;
    }

    public void setAnnotation(Object annotation) {
        this.annotation = annotation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy