| | |
| | | * 商品编号 |
| | | */ |
| | | @ApiModelProperty(value= "商品编号") |
| | | @ExcelProperty(value = "商品编码") |
| | | @ExcelProperty(value = "商品编号") |
| | | private String matnr; |
| | | |
| | | /** |
| | | * 商品编号 |
| | | */ |
| | | @ApiModelProperty(value= "新商品编号") |
| | | @ExcelProperty(value = "新商品编号") |
| | | private String matnrNew; |
| | | |
| | | |
| | | /** |
| | |
| | | @TableField("inout_everyday") |
| | | private Boolean inoutEveryday; |
| | | |
| | | /** |
| | | * 上架区域{1:单品区,2:高频混放区,3:低频混放区} |
| | | */ |
| | | @ApiModelProperty(value= "上架区域") |
| | | @TableField("mat_type") |
| | | private Integer matType; |
| | | |
| | | public Mat() {} |
| | | |
| | |
| | | } |
| | | } |
| | | |
| | | public String getMatType$() { |
| | | if (this.matType == null) { |
| | | return ""; |
| | | } |
| | | switch (this.matType) { |
| | | case 1: |
| | | return "单品区"; |
| | | case 2: |
| | | return "高频混放区"; |
| | | case 3: |
| | | return "低频混放区"; |
| | | default: |
| | | return ""; |
| | | } |
| | | } |
| | | |
| | | } |