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; }