All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ecfront.easybi.excelconverter.exchange.annotation.Map2E Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package com.ecfront.easybi.excelconverter.exchange.annotation;

import java.lang.annotation.*;


/**
 * 标记映射规则
 */
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Map2E {

   String value();

    Mode mode() default Mode.ROW;

    String left() default "";

    String top() default "";

    String abs() default "";

    boolean isMatrix() default false;

    int colspan() default 0;

    String colspanExpression() default "";

    int rowspan() default 0;

    String rowspanExpression() default "";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy