buhuazhen
2 天以前 1d68d2eec415e5f4ef508033ded1dbead1d300ae
src/main/java/com/ruoyi/stock/execl/StockInventoryExportData.java
@@ -1,5 +1,36 @@
package com.ruoyi.stock.execl;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class StockInventoryExportData {
    @Excel(name ="仓库编码")
    private String warehouseCode;
    @Excel(name ="仓库")
    private String warehouseName;
    @Excel(name = "存货编码")
    private String productCode;
    @Excel(name = "存货")
    private String productName;
    @Excel(name = "规格型号")
    private String model;
    @Excel(name = "主单位")
    private String unit;
    @Excel(name = "数量(主单位)")
    private BigDecimal qualitity;
//
//    @Excel(name = "最新更新时间")
//    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    private LocalDateTime updateTime;
}