From 59fe126864ba22cdaefc40c694912fd6d44ff2f0 Mon Sep 17 00:00:00 2001 From: liushuang Date: Tue, 14 Oct 2025 15:22:37 +0800 Subject: [PATCH] =?UTF-8?q?docs(readme):=20=E6=9B=B4=E6=96=B0=E8=A1=A8?= =?UTF-8?q?=E6=A0=BC=E9=85=8D=E7=BD=AE=E8=AF=B4=E6=98=8E-=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E8=A1=A8=E6=A0=BC=E9=85=8D=E7=BD=AE=E7=A4=BA=E4=BE=8B?= =?UTF-8?q?=E4=B8=AD=E7=9A=84headLine=E5=92=8CtitleRow=E5=8F=82=E6=95=B0-?= =?UTF-8?q?=20=E6=B7=BB=E5=8A=A0uniKeys=E9=85=8D=E7=BD=AE=E9=A1=B9?= =?UTF-8?q?=E8=AF=B4=E6=98=8E=20-=20=E6=9B=B4=E6=96=B0=E8=A1=A8=E6=A0=BC?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E9=85=8D=E7=BD=AE=E6=96=87=E6=A1=A3=E5=86=85?= =?UTF-8?q?=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c2e38db..7248b49 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ try (FsClient fsClient = FsClient.getInstance()) { ### 2. 创建实体类 ```java -@TableConf(headLine = 3, titleRow = 2, enableDesc = true) +@TableConf(headLine = 4, titleRow = 3, enableDesc = true) public class Employee extends BaseEntity { @TableProperty(value = {"ID", "员工信息", "员工编号"}, order = 0, desc = "员工编号不超过20个字符") @@ -113,6 +113,7 @@ employees.forEach(emp -> System.out.println(emp.name + " - " + emp.email)); 用于配置表格样式: +- `uniKeys()`: 唯一键索引,用于数据更新 - `headLine()`: 表头行数 - `titleLine()`: 标题行数 - `enableCover()`: 是否开启覆盖写入