
com.ecfront.easybi.excelconverter.exchange.annotation.Validation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ez-excelconverter Show documentation
Show all versions of ez-excelconverter Show documentation
Simple Java and Excel conversion tools.
package com.ecfront.easybi.excelconverter.exchange.annotation;
import java.lang.annotation.*;
/**
* 标记映射规则
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Validation {
String left() default "";
String top() default "";
String abs() default "";
String length() default "";
Mode mode() default Mode.ROW;
int absLength() default -1;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy