用户导入

This commit is contained in:
RuoYi
2019-01-11 09:50:16 +08:00
parent 5fc9a63231
commit ca5b4bc852
13 changed files with 39 additions and 36 deletions

View File

@ -70,13 +70,13 @@ public @interface Excel
public String targetAttr() default "";
/**
* 字段类型( 1仅导出2仅导入
* 字段类型(0导出导入1仅导出2仅导入
*/
Type type() default Type.EXPORT;
Type type() default Type.ALL;
public enum Type
{
EXPORT(1), IMPORT(2);
ALL(0), EXPORT(1), IMPORT(2);
private final int value;
Type(int value)