mirror of https://github.com/alibaba/easyexcel
jipengfei.jpf
6 years ago
26 changed files with 83 additions and 25 deletions
@ -0,0 +1,11 @@
|
||||
package com.alibaba.excel.annotation; |
||||
|
||||
/** |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public enum FieldType { |
||||
|
||||
STRING, INT, LONG, DATE, BOOLEAN, DOUBLE,EMPTY; |
||||
|
||||
} |
@ -0,0 +1,17 @@
|
||||
package com.alibaba.excel.constant; |
||||
|
||||
/** |
||||
* @author jipengfei |
||||
*/ |
||||
public class ExcelXmlConstants { |
||||
public static final String DIMENSION = "dimension"; |
||||
public static final String DIMENSION_REF = "ref"; |
||||
public static final String POSITION = "r"; |
||||
|
||||
public static final String ROW_TAG = "row"; |
||||
public static final String CELL_TAG = "c"; |
||||
public static final String CELL_VALUE_TAG = "v"; |
||||
|
||||
public static final String CELL_VALUE_TAG_1 = "t"; |
||||
|
||||
} |
Loading…
Reference in new issue