From 8853292babb2ad94de4a3207966f1e83b767cd2d Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Sun, 17 Sep 2023 16:38:34 +0800
Subject: [PATCH] 新增流程节点进程查询接口
---
src/main/java/org/springblade/modules/system/excel/SecurityExcel.java | 42 ++++++++++++++++--------------------------
1 files changed, 16 insertions(+), 26 deletions(-)
diff --git a/src/main/java/org/springblade/modules/system/excel/SecurityExcel.java b/src/main/java/org/springblade/modules/system/excel/SecurityExcel.java
index a9ca871..c327080 100644
--- a/src/main/java/org/springblade/modules/system/excel/SecurityExcel.java
+++ b/src/main/java/org/springblade/modules/system/excel/SecurityExcel.java
@@ -1,19 +1,3 @@
-/*
- * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * Neither the name of the dreamlu.net developer nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- * Author: Chill 庄骞 (smallchill@163.com)
- */
package org.springblade.modules.system.excel;
import com.alibaba.excel.annotation.ExcelProperty;
@@ -21,7 +5,6 @@
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import lombok.Data;
-
import java.io.Serializable;
/**
@@ -36,7 +19,7 @@
public class SecurityExcel implements Serializable {
private static final long serialVersionUID = 1L;
- @ExcelProperty("单位名称*")
+ @ExcelProperty("企业名称*")
@ColumnWidth(30)
private String deptId;
@@ -48,7 +31,7 @@
@ExcelProperty("联系电话*")
private String phone;
- @ExcelProperty("性别*")
+ @ExcelProperty("性别*(男/女)")
@ColumnWidth(10)
private String sex;
@@ -60,16 +43,23 @@
@ColumnWidth(10)
private String nation;
- @ExcelProperty("住址*")
+ @ExcelProperty("身份证住址*")
private String registered;
- @ExcelProperty("是否持证*")
- @ColumnWidth(15)
- private String hold;
-
- @ExcelProperty("保安员证编码")
+ @ExcelProperty("从业单位*")
@ColumnWidth(20)
- private String securitynumber;
+ private String unitName;
+
+ @ExcelProperty("最高学历*(初中及以下/高中/中技/中专/大专/本科/博士/硕士)")
+ @ColumnWidth(20)
+ private String education;
+
+ @ExcelProperty("政治面貌*")
+ @ColumnWidth(20)
+ private String politicaloutlook;
+
+ @ExcelProperty("联系地址*")
+ private String address;
}
--
Gitblit v1.9.3