| | |
| | | /* |
| | | * 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; |
| | |
| | | import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
| | | import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | |
| | | public class SecurityExcel implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ExcelProperty("单位名称*") |
| | | @ExcelProperty("企业名称*") |
| | | @ColumnWidth(30) |
| | | private String deptId; |
| | | |
| | |
| | | @ExcelProperty("联系电话*") |
| | | private String phone; |
| | | |
| | | @ExcelProperty("性别*") |
| | | @ExcelProperty("性别*(男/女)") |
| | | @ColumnWidth(10) |
| | | private String sex; |
| | | |
| | |
| | | @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; |
| | | |
| | | |
| | | } |