package com.gkhy.hazmat.common.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Getter;
|
import lombok.Setter;
|
|
import java.math.BigDecimal;
|
|
@Getter
|
@Setter
|
public class HazmatBasicExcelData {
|
@ExcelProperty("序号")
|
private Integer index;
|
|
@ExcelProperty("名称")
|
private String name;
|
|
@ExcelProperty("产品编号")
|
private String productSn;
|
|
@ExcelProperty("种类")
|
private String kind;
|
|
@ExcelProperty("CAS")
|
private String cas;
|
|
@ExcelProperty("试剂类型")
|
private String hazmatType;
|
|
@ExcelProperty("危险性质")
|
private String hazmatCharacter;
|
|
@ExcelProperty("供应商")
|
private String supplier;
|
|
@ExcelProperty("厂家")
|
private String manufacturer;
|
|
@ExcelProperty("规格")
|
private String hazmatFormat;
|
|
|
@ExcelProperty("包装数量")
|
private BigDecimal metering;
|
|
@ExcelProperty("包装单位")
|
private String unit;
|
|
@ExcelProperty("含税价格")
|
private BigDecimal price;
|
|
@ExcelProperty("每箱数量")
|
private Integer perBox;
|
|
|
@ExcelProperty("最小包装类型")
|
private String minPackage;
|
|
|
@ExcelProperty("安全库存")
|
private Integer safeNum;
|
|
|
@ExcelProperty("超期阀值(小时)")
|
private Integer threshold;
|
|
|
@ExcelProperty("单次入库最大数量")
|
private Integer maxEntry;
|
|
|
}
|