Skip to content

Commit

Permalink
perf($Excel): translate into English
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymillergh committed Feb 19, 2021
1 parent dbd501f commit 60f8cd1
Show file tree
Hide file tree
Showing 2 changed files with 319 additions and 267 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package com.jmsoftware.maf.springcloudstarter.annotation;

import org.apache.poi.ss.usermodel.CellType;

import java.lang.annotation.*;

/**
* Description: ExcelColumn, change description here.
*
* @author 钟俊 (zhongjun), email: zhongjun@toguide.cn, date: 2/19/2021 9:15 AM
*/
@Documented
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ExcelColumn {
/**
* Description string.
*
* @return the string
*/
String description() default "";

/**
* Cell type cell type.
*
* @return the cell type
*/
CellType cellType() default CellType.STRING;
}
Loading

0 comments on commit 60f8cd1

Please sign in to comment.