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

io.github.kiryu1223.drink.annotation.SqlExtensionExpression Maven / Gradle / Ivy

There is a newer version: 1.0.14
Show newest version
package io.github.kiryu1223.drink.annotation;

import io.github.kiryu1223.drink.ext.BaseSqlExtension;
import io.github.kiryu1223.drink.ext.DbType;

import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@Repeatable(SqlExtensionExpressions.class)
public @interface SqlExtensionExpression
{
    DbType dbType() default DbType.Any;

    String function();

    String separator() default ",";

//    boolean rawValue() default false;

    Class extension() default BaseSqlExtension.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy