From 79c0b02dd6d81c96f5df64c3704cadb1dadc0904 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=E5=B4=87=E5=BE=B7?= Date: Wed, 21 Feb 2024 14:14:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=80=E6=9C=AF=E7=9F=A5=E8=AF=86=E5=BA=93/?= =?UTF-8?q?=E4=B8=80=E3=80=81=E6=8A=80=E6=9C=AF=E6=96=87=E6=A1=A3/?= =?UTF-8?q?=E5=90=8E=E7=AB=AF/easypoi=E7=9A=84=E7=AE=80=E5=8D=95=E4=BD=BF?= =?UTF-8?q?=E7=94=A8.md=20created?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../后端/easypoi的简单使用.md | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 技术知识库/一、技术文档/后端/easypoi的简单使用.md diff --git a/技术知识库/一、技术文档/后端/easypoi的简单使用.md b/技术知识库/一、技术文档/后端/easypoi的简单使用.md new file mode 100644 index 0000000..d6812a3 --- /dev/null +++ b/技术知识库/一、技术文档/后端/easypoi的简单使用.md @@ -0,0 +1,36 @@ +## 一、基本介绍 + +一个让你简单使用poi的工具,通过删除线文本简单的注解和模板,可以完成Excel导出,Excel模板导出,Excel导入,Word模板导出。 + +## 二、导入依赖 + +``` + +cn.afterturn +easypoi-base +4.3.0 + + +cn.afterturn +easypoi-web +4.3.0 + + +cn.afterturn +easypoi-annotation +4.3.0 + +``` + +## 三、Excel导入导出 + +### 1、注解描述及其主要属性使用 + +#### 1.1、@Excel + +主要使用该注解进行功能开发,用于类中的一个属性上,表示Excel中的一列。 + +#### 1.2、@ExcelCollection + \ No newline at end of file