Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

涂亚平 / yunda

  • 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
  • yunda
  • ..
  • excel
  • ExcelColumnUtil.java
  • 涂亚平's avatar
    start · e19a91b8
    涂亚平 committed Jul 22, 2025
    e19a91b8 Browse Directory
ExcelColumnUtil.java 333 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package com.meishu.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;
}