We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
好像不支持字段是枚举类型的属性.
The text was updated successfully, but these errors were encountered:
支持的,你能说下具体的是什么样的情况下不支持吗?
Sorry, something went wrong.
实体类如下 @DaTa public class ExcelModel {
@ExcelField(title = "序列号") private String serialNum; @ExcelField(title = "数据类型") private DataSourceEnum state;
} 枚举类如下 public enum DataSourceEnum { Y("激活", 1),
N("未激活", 2);
} 这时excel写入 序列号 数据类型 1 Y 2 N
这样的excel时, 就会读取失败
No branches or pull requests
好像不支持字段是枚举类型的属性.
The text was updated successfully, but these errors were encountered: