Blame view

ExcelColumn.java 233 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package com.subsidy.util.excel;


import java.lang.annotation.*;

@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ExcelColumn {

    String value() default "";

    int col() default 1;
}