com.silentgo.orm.sqlparser.annotation.WhereJudge Maven / Gradle / Ivy
package com.silentgo.orm.sqlparser.annotation;
import java.lang.annotation.*;
/**
* Project : SilentGo
* Package : com.silentgo.orm.sqlparser.annotation
*
* @author teddyzhu
*
* Created by teddyzhu on 2016/11/11.
*/
@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface WhereJudge {
/**
* support string or boolean name value
* @return
*/
String value();
String condition();
}