package org.n3r.eql.convert.todb; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * @author bingoohuang [bingoohuang@gmail.com] Created on 2017/2/9. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) @ToDbConvert(ToDbDecodeConverter.class) public @interface ToDbDecode { String[] value(); String toType() default "string"; }