com.javaoffers.batis.modelhelper.anno.fun.params.varchar.CharLength Maven / Gradle / Ivy
package com.javaoffers.batis.modelhelper.anno.fun.params.varchar;
import com.javaoffers.batis.modelhelper.constants.ModelHelpperConstants;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Get the number of characters in a string function: char_length(str)
* create by cmj
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface CharLength {
public static final String TAG = "CHAR_LENGTH";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy