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

com.opdar.gulosity.spring.annotations.Table Maven / Gradle / Ivy

The newest version!
package com.opdar.gulosity.spring.annotations;

import org.springframework.stereotype.Component;

import java.lang.annotation.*;

/**
 * Created by 俊帆 on 2016/10/14.
 */
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Table {
    String value();
    boolean camelCase() default false;
    public enum CaseExtension{
        NULL,UPPER,LOWER
    }
    CaseExtension extension() default CaseExtension.NULL;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy