| | |
| | | package com.consum.base.pojo.excel; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | |
| | | import lombok.Data; |
| | |
| | | */ |
| | | @Data |
| | | public class ImportGoodsInfoTemplate { |
| | | |
| | | @ExcelProperty("一级分类") |
| | | private String categoryOne; |
| | | @ExcelProperty("二级分类") |
| | | private String categoryTwo; |
| | | @ExcelProperty("三级分类") |
| | | @ExcelProperty("品类名称") |
| | | private String categoryThree; |
| | | @ExcelProperty("物品名称") |
| | | @ExcelProperty("品名") |
| | | private String goodsName; |
| | | @ExcelProperty("规格型号") |
| | | private String goodModelName; |
| | | @ExcelProperty("单位") |
| | | private String unit; |
| | | @ExcelProperty("采购类型") |
| | | private String type; |
| | | // @ExcelProperty("物品类型") |
| | | // private String type; |
| | | @ExcelProperty("所属机构") |
| | | private String agencyName; |
| | | |
| | | } |