Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

涂亚平 / subsidy-center

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • subsidy-center
  • ..
  • excel
  • ExcelColumnUtil.java
  • 涂亚平's avatar
    start · d1b40e4c
    涂亚平 committed Jan 22, 2024
    d1b40e4c
ExcelColumnUtil.java 335 Bytes
BlameHistoryPermalink
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;
}