|
|
@ -6,6 +6,7 @@ import com.alibaba.excel.annotation.write.style.HeadStyle; |
|
|
|
import com.alibaba.excel.enums.poi.FillPatternTypeEnum; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import lombok.Data; |
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
|
|
|
|
@ -54,19 +55,20 @@ public class IcYtTripReportRecordExportExcel implements Serializable { |
|
|
|
*/ |
|
|
|
@ColumnWidth(30) |
|
|
|
@ExcelProperty(value = "来自地区") |
|
|
|
private String comeAreaFull; |
|
|
|
private String sourceAddress; |
|
|
|
/** |
|
|
|
* 来自地区详细地址 |
|
|
|
*/ |
|
|
|
@ColumnWidth(30) |
|
|
|
@ExcelProperty(value = "来自地区详细地址") |
|
|
|
private String sourceDetailAddress; |
|
|
|
private String comeAreaFull; |
|
|
|
/** |
|
|
|
* 来到本地时间 |
|
|
|
*/ |
|
|
|
@ColumnWidth(20) |
|
|
|
@ExcelProperty(value = "来到本地时间") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
private String arriveTime; |
|
|
|
|
|
|
|
/** |
|
|
@ -184,7 +186,7 @@ public class IcYtTripReportRecordExportExcel implements Serializable { |
|
|
|
@ColumnWidth(20) |
|
|
|
@ExcelProperty(value = "离开本地时间") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
|
private String leaveDate; |
|
|
|
private String leaveTheRiskAreaTime; |
|
|
|
/** |
|
|
|
* 备注 |
|
|
|
*/ |
|
|
|