| package com.zy.asrs.entity; | 
|   | 
| /** | 
|  * Created by vincent on 2020/6/8 | 
|  */ | 
| public class MatCodePrint { | 
|   | 
|     /** | 
|      * 商品编号 | 
|      */ | 
|     private String matNo; | 
|   | 
|     /** | 
|      * 条码地址 | 
|      */ | 
|     private String barcode; | 
|   | 
|     /** | 
|      * 商品名称 | 
|      */ | 
|     private String matName; | 
|   | 
|     /** | 
|      * 物料单位 | 
|      */ | 
|     private String str1; | 
|   | 
|     /** | 
|      * 规格 | 
|      */ | 
|     private String str2; | 
|   | 
|     public String getMatNo() { | 
|         return matNo; | 
|     } | 
|   | 
|     public void setMatNo(String matNo) { | 
|         this.matNo = matNo; | 
|     } | 
|   | 
|     public String getBarcode() { | 
|         return barcode; | 
|     } | 
|   | 
|     public void setBarcode(String barcode) { | 
|         this.barcode = barcode; | 
|     } | 
|   | 
|     public String getMatName() { | 
|         return matName; | 
|     } | 
|   | 
|     public void setMatName(String matName) { | 
|         this.matName = matName; | 
|     } | 
|   | 
|     public String getStr1() { | 
|         return str1; | 
|     } | 
|   | 
|     public void setStr1(String str1) { | 
|         this.str1 = str1; | 
|     } | 
|   | 
|     public String getStr2() { | 
|         return str2; | 
|     } | 
|   | 
|     public void setStr2(String str2) { | 
|         this.str2 = str2; | 
|     } | 
| } |