src/main/java/com/ruoyi/stock/execl/StockOutRecordExportData.java
@@ -23,11 +23,14 @@
    private String recordType;
    @Excel(name = "出库数量")
    private String stockInNum;
    @Excel(name = "出库时间")
    @Excel(name = "出库时间", dateFormat = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime createTime;
    @Excel(isExport = false)
    private String type;
    @Excel(isExport = false)
    private String processName;
}