com.javaoffers.batis.modelhelper.anno.fun.params.Left Maven / Gradle / Ivy
package com.javaoffers.batis.modelhelper.anno.fun.params;
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;
/**
* select left(colName, length)
* @author mingJie
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface Left {
public static final String TAG = "LEFT";
/**
* length
*/
int value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy