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

com.javaoffers.batis.modelhelper.anno.BaseModel Maven / Gradle / Ivy

There is a newer version: 3.5.11.12
Show newest version
package com.javaoffers.batis.modelhelper.anno;

import java.lang.annotation.*;

/**
 * for model data
 * @author cmj
 *
 */
@Target({ElementType.TYPE,ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface BaseModel {

    /**
     * Specify the table name. If not, it defaults to the class name with camel case and underscore
     * Note: This property is useful in CrudMapper scenarios
     * @return
     */
    String value() default "";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy