From 671db291656c3927ef58bbbdfb245746c63cec3e Mon Sep 17 00:00:00 2001
From: 无关风月 <443237572@qq.com>
Date: 星期六, 21 六月 2025 09:34:34 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 ruoyi-system/src/main/java/com/ruoyi/system/importExcel/TLocationImportExcel.java |   40 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/importExcel/TLocationImportExcel.java b/ruoyi-system/src/main/java/com/ruoyi/system/importExcel/TLocationImportExcel.java
new file mode 100644
index 0000000..7c7fe66
--- /dev/null
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/importExcel/TLocationImportExcel.java
@@ -0,0 +1,40 @@
+package com.ruoyi.system.importExcel;
+
+import cn.afterturn.easypoi.excel.annotation.Excel;
+import io.swagger.annotations.ApiModel;
+import lombok.Data;
+
+import java.io.Serializable;
+
+@Data
+@ApiModel(value = "点位导入excel")
+public class TLocationImportExcel implements Serializable {
+
+    @Excel(name = "项目部编号")
+    private String deptCode;
+    @Excel(name = "项目部名称")
+    private String deptName;
+    @Excel(name = "基层管理员姓名  巡检员")
+    private String nickName;
+    @Excel(name = "保洁员部门编号")
+    private String projectCodeClear;
+    @Excel(name = "保洁员项目部编号")
+    private String deptCodeClear;
+    @Excel(name = "保洁员片区编号")
+    private String cleanerCodeClear;
+    @Excel(name = "路段总号")
+    private String locationCode;
+    @Excel(name = "点位类型")
+    private String locationType;
+    @Excel(name = "路段名(村名)")
+    private String locationName;
+    @Excel(name = "起点")
+    private String locationAddress;
+    @Excel(name = "终点")
+    private String locationAddressEnd;
+    @Excel(name = "起点(经纬度)")
+    private String locationAddressLonLat;
+    @Excel(name = "终点(经纬度)")
+    private String locationAddressEndLonLat;
+
+}

--
Gitblit v1.7.1