package zy.cloud.wms.common.entity;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
/**
|
* Created by vincent on 2021/7/20
|
*/
|
@Data
|
@ExcelIgnoreUnannotated
|
public class SafeStoExport {
|
|
@ExcelProperty(index = 0, value = "货位")
|
private String node_name;
|
|
@ExcelProperty(index = 1, value = "商品编号")
|
private String matnr;
|
|
@ExcelProperty(index = 2, value = "商品名称")
|
private String maktx;
|
|
@ExcelProperty(index = 3, value = "安全库存量")
|
private Double safe_qua;
|
|
@ExcelProperty(index = 4, value = "当前库存量")
|
private Double amount;
|
|
@ExcelProperty(index = 5, value = "占用百分比")
|
private String progress;
|
|
@ExcelProperty(index = 6, value = "警报等级")
|
private String status;
|
|
}
|