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

com.github.yooryan.advancequery.annotation.AdvanceSqlOp Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package com.github.yooryan.advancequery.annotation;


import java.lang.annotation.*;

/**
 * @author linyunrui
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
@Inherited
public @interface AdvanceSqlOp {

    /**
     * 查询操作符
     * @return 操作符
     */
    SqlKeyword value();

    /**
     * 驼峰命名转换_
     * @return 默认true
     */
    boolean camelCaseToUnderscoreMap() default true;

    /**
     * 设定别名
     * @return 默认为""
     */
    String alias() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy