package com.ruoyi.stock.execl;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
@Data
|
public class StockUnInventoryExportData {
|
|
|
|
@Excel(name = "产品名称")
|
private String productName;
|
|
@Excel(name = "规格")
|
private String model;
|
|
@Excel(name = "单位")
|
private String unit;
|
|
@Excel(name = "批号")
|
private String batchNo;
|
|
@Excel(name = "库存类型")
|
private String type;
|
|
@Excel(name = "库存数量")
|
private BigDecimal qualitity;
|
|
@Excel(name = "冻结数量")
|
private BigDecimal lockedQuantity;
|
|
@Excel(name = "可用数量")
|
private BigDecimal unLockedQuantity;
|
|
@Excel(name = "备注")
|
private String remark;
|
|
@Excel(name = "最新更新时间", width = 20, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime updateTime;
|
|
}
|