forked from fanruan/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
463 B
19 lines
463 B
7 years ago
|
package com.alibaba.excel.util;
|
||
7 years ago
|
|
||
|
/**
|
||
|
* @author jipengfei
|
||
7 years ago
|
*
|
||
7 years ago
|
*/
|
||
|
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";
|
||
|
|
||
|
}
|