pref_mail@163.com
6 months ago
11 changed files with 312 additions and 10 deletions
@ -0,0 +1,187 @@
|
||||
/* |
||||
* 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 com.logpm.basicdata.excel; |
||||
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
|
||||
/** |
||||
* 司机信息导出 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-05-15 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class BasicdataExportDriverArteryExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
|
||||
|
||||
/** |
||||
* 司机姓名 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("司机姓名") |
||||
private String name; |
||||
/** |
||||
* 司机手机号码 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("司机手机号码") |
||||
private String phone; |
||||
/** |
||||
* 司机类型;1-自有,2-加盟,3-外调,4-临调 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("司机类型") |
||||
private String type; |
||||
/** |
||||
* 职务类型;1-干线,2-配送 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("职务类型") |
||||
private String jobType; |
||||
/** |
||||
* 准驾车型;1-A1,2-A2,3-A3,4-B1,5-B2,6-C1,7-C2 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("准驾车型") |
||||
private String drivingType; |
||||
/** |
||||
* 车辆信息 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("车辆信息") |
||||
private String bindVehicles; |
||||
|
||||
/** |
||||
* 合同开始时间 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("合同开始时间") |
||||
private String contractStartTime; |
||||
/** |
||||
* 合同结束时间 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("合同结束时间") |
||||
private String contractEndTime; |
||||
/** |
||||
* 身份证号 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("身份证号") |
||||
private String idCard; |
||||
/** |
||||
* 性别 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("性别") |
||||
private String gender; |
||||
/** |
||||
* 仓库 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("仓库") |
||||
private String warehouseName; |
||||
/** |
||||
* 居住地址 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("居住地址") |
||||
private String residentialAddress; |
||||
/** |
||||
* 银行类型;1-工商银行,2-建设银行,3-农业银行,4-邮政银行,5-中国银行,6-交通银行,7-其他 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("银行类型") |
||||
private String bankType; |
||||
/** |
||||
* 银行卡号 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("银行卡号") |
||||
private String bankCardNub; |
||||
/** |
||||
* 驾驶证号 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("驾驶证号") |
||||
private String driverLicenseNub; |
||||
/** |
||||
* 驾驶证发证机关 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("驾驶证发证机关") |
||||
private String driverLicenseOrgan; |
||||
/** |
||||
* 驾驶证起始日期 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("驾驶证起始日期") |
||||
private String driverLicenseStartTime; |
||||
/** |
||||
* 驾驶证到期日期 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("驾驶证到期日期") |
||||
private String driverLicenseEndTime; |
||||
/** |
||||
* 从业资格证编号 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("从业资格证编号") |
||||
private String employeeQualificationNub; |
||||
/** |
||||
* 道路经营许可证号 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("道路经营许可证号") |
||||
private String roadOperationLicenseNub; |
||||
/** |
||||
* 关联承运商Id |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("关联承运商") |
||||
private String carrierName; |
||||
/** |
||||
* 运输协议 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("运输协议") |
||||
private String transportationAgreement; |
||||
|
||||
/** |
||||
* 备注 |
||||
*/ |
||||
@ColumnWidth(40) |
||||
@ExcelProperty("备注") |
||||
private String notes; |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue