From 72f0bb132ae89eea21afc8e92666523dcde632ab Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期五, 06 十月 2023 12:33:17 +0800 Subject: [PATCH] 添加 fingerId 字段 --- src/main/java/com/smartearth/poiexcel/entity/OrgPoiExcel.java | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/smartearth/poiexcel/entity/OrgPoiExcel.java b/src/main/java/com/smartearth/poiexcel/entity/OrgPoiExcel.java index 57cd5b0..004154f 100644 --- a/src/main/java/com/smartearth/poiexcel/entity/OrgPoiExcel.java +++ b/src/main/java/com/smartearth/poiexcel/entity/OrgPoiExcel.java @@ -3,6 +3,8 @@ import com.alibaba.excel.annotation.ExcelProperty; public class OrgPoiExcel { + @ExcelProperty("鍞竴缂栧彿") + private String fingerId; @ExcelProperty("寰呰浆鎹㈠湴鍧�") private String address; @@ -19,6 +21,7 @@ @Override public String toString() { return "OrgPoiExcel{" + + ", fingerId='" + fingerId + '\'' + ", address='" + address + '\'' + ", x=" + x + ", y=" + y + @@ -26,6 +29,13 @@ '}'; } + public String getFingerId() { + return fingerId; + } + + public void setFingerId(String fingerId) { + this.fingerId = fingerId; + } public String getAddress() { return address; -- Gitblit v1.9.3