Blame view

ExcelColumnUtil.java 335 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.subsidy.util.excel;


import java.lang.annotation.*;

/**
 * <p>
 *  excel 字段
 * </p>
 *
 * @author DengMin
 * @date Created in 2020/08/28   
 */
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ExcelColumnUtil {

    String value() default "";

    int col() default 0;
}