5 changed files with 240 additions and 4 deletions
@ -0,0 +1,30 @@ |
|||||||
|
package com.logpm.basicdata.excel; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
import com.logpm.basicdata.service.IBasicdataDriverArteryService; |
||||||
|
import lombok.RequiredArgsConstructor; |
||||||
|
import org.springblade.core.excel.support.ExcelImporter; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* @program: LogisticsPlatform-Service |
||||||
|
* @description: |
||||||
|
* @author: lmy |
||||||
|
* @create: 2023-08-09 10:26 |
||||||
|
**/ |
||||||
|
@RequiredArgsConstructor |
||||||
|
public class BasicdataDriverArteryImporter implements ExcelImporter<BasicdataDriverArteryImproterExcel> { |
||||||
|
|
||||||
|
private final IBasicdataDriverArteryService service; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@Override |
||||||
|
public void save(List<BasicdataDriverArteryImproterExcel> data) { |
||||||
|
service.importDriverArtery(data); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,177 @@ |
|||||||
|
/* |
||||||
|
* 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; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 司机信息表 Excel实体类 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-05-15 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ColumnWidth(25) |
||||||
|
@HeadRowHeight(20) |
||||||
|
@ContentRowHeight(18) |
||||||
|
public class BasicdataDriverArteryImproterExcel implements Serializable { |
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 司机姓名 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("司机姓名") |
||||||
|
private String name; |
||||||
|
/** |
||||||
|
* 司机手机号码 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("司机手机号码") |
||||||
|
private String phone; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车辆信息 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("车辆信息") |
||||||
|
private String bindVehicles; |
||||||
|
/** |
||||||
|
* 司机类型;1-自有,2-加盟,3-外调,4-临调 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("司机类型;1-自有,2-加盟,3-外调,4-临调") |
||||||
|
private Integer type; |
||||||
|
/** |
||||||
|
* 职务类型;1-干线,2-配送 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("职务类型;1-干线,2-配送") |
||||||
|
private Integer jobType; |
||||||
|
/** |
||||||
|
* 准驾车型;1-A1,2-A2,3-A3,4-B1,5-B2,6-C1,7-C2 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("准驾车型;1-A1,2-A2,3-A3,4-B1,5-B2,6-C1,7-C2") |
||||||
|
private Integer drivingType; |
||||||
|
|
||||||
|
/** |
||||||
|
* 合同开始时间 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("合同开始时间") |
||||||
|
private String contractStartTime; |
||||||
|
/** |
||||||
|
* 合同结束时间 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("合同结束时间") |
||||||
|
private String contractEndTime; |
||||||
|
/** |
||||||
|
* 身份证号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("身份证号") |
||||||
|
private String idCard; |
||||||
|
/** |
||||||
|
* 性别 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("性别") |
||||||
|
private Integer gender; |
||||||
|
/** |
||||||
|
* 居住地址 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("居住地址") |
||||||
|
private String residentialAddress; |
||||||
|
/** |
||||||
|
* 银行类型;1-工商银行,2-建设银行,3-农业银行,4-邮政银行,5-中国银行,6-交通银行,7-其他 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("银行类型;1-工商银行,2-建设银行,3-农业银行,4-邮政银行,5-中国银行,6-交通银行,7-其他") |
||||||
|
private Integer 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; |
||||||
|
|
||||||
|
/** |
||||||
|
* 运输协议 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("运输协议") |
||||||
|
private String transportationAgreement; |
||||||
|
|
||||||
|
/** |
||||||
|
* 备注 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("备注") |
||||||
|
private String notes; |
||||||
|
|
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue