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

cn.schoolwow.quickapi.handler.entity.EntityHandlerMapping Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
package cn.schoolwow.quickapi.handler.entity;

public enum EntityHandlerMapping {
    QuickServer("cn.schoolwow.quickdao.dao.DAO",QuickDAOEntityHandler.class),
    Swagger("io.swagger.annotations.ApiModel",SwaggerEntityHandler.class);
    public String className;
    public Class _class;

    EntityHandlerMapping(String className, Class _class) {
        this.className = className;
        this._class = _class;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy