packagecom.proengine.domain.man.partner.bean;importcom.alibaba.excel.annotation.ExcelIgnore;importcom.alibaba.excel.annotation.ExcelProperty;importcom.alibaba.excel.annotation.write.style.ColumnWidth;importcom.proengine.domain.common.enums.PromotionStatusEnum;importcom.proengine.sdk.enums.PromotionSubTypeEnum;importjava.math.BigDecimal;importjava.util.Date;/*** @Author: SXD
* @Description:
* @Date: create in 2019/9/26 11:43*/@ColumnWidth(25)public classProSkuSearchInfoDisplay {/*** 促销ID*/@ExcelProperty(value= "促销编码",index = 6)privateString proId;/*** 参与类型*/@ExcelIgnoreprivateInteger itemType;/*** 商品sku 或 商品mc
* DB查询出来的值*/@ExcelIgnoreprivateString itemCode;/*** 商品sku
* 最终结果值*/@ExcelProperty(value= "商品sku",index = 0)privateLong sku;/*** 物料编码*/@ExcelProperty(value= "物料编码",index = 1)privateString matnrCode;/*** 商品名称*/@ExcelProperty(value= "商品名称",index = 2)privateString skuName;/*** 国条码*/@ExcelProperty(value= "国条码",index = 3)privateString barCode;/*** 商品MC
* 最终结果值*/@ExcelProperty(value= "商品MC",index = 4)privateString skuMc;/*** 商品MC Name*/@ExcelIgnoreprivateString skuMcName;/*** 促销档期*/@ExcelProperty(value= "促销档期",index = 5)privateString proSchedule;/*** 促销编码*/@ExcelIgnoreprivateString proCode;/*** 促销名称*/@ExcelProperty(value= "促销名称",index =7)privateString proName;/