liyong
11 小时以前 1cf91e355038837f30f2d727507b2229263d7de7
src/main/java/com/ruoyi/stock/execl/StockInventoryExportData.java
@@ -1,6 +1,5 @@
package com.ruoyi.stock.execl;
import com.alibaba.excel.annotation.ExcelProperty;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
@@ -9,16 +8,32 @@
@Data
public class StockInventoryExportData {
    @Excel(name = "产品名称")
    private String model;
    private String productName;
    @Excel(name = "规格")
    private String productName;
    private String model;
    @Excel(name = "单位")
    private String unit;
    @Excel(name = "库存数量")
    private BigDecimal qualitity;
    @Excel(name = "预警数量")
    private BigDecimal warnNum;
    @Excel(name = "冻结数量")
    private BigDecimal lockedQuantity;
    @Excel(name = "备注")
    private String remark;
//
//    @Excel(name = "最新更新时间")
//    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    private LocalDateTime updateTime;
}