Blame view

ExcelColumn.java 235 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
package com.zhongzhi.common.utils;

import java.lang.annotation.*;

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

    String value() default "";

    int col() default 1;
}