Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

涂亚平 / template

  • 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
  • template
  • ..
  • utils
  • ExcelColumn.java
  • 涂亚平's avatar
    start · 5c526ac8
    涂亚平 committed May 06, 2025
    5c526ac8
ExcelColumn.java 235 Bytes
BlameHistoryPermalink
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;
}