| package com.zy.common.service.erp.entity; | 
|   | 
| import lombok.Data; | 
|   | 
| /** | 
|  * Created by vincent on 2022/12/8 | 
|  */ | 
| @Data | 
| public class Voucher { | 
|   | 
|     private String VoucherID; | 
|   | 
|     private String MT; | 
|   | 
|     private String MaterialNO; | 
|   | 
|     private String CenterID; | 
|   | 
|     private String Plant; | 
|   | 
|     private String Loc; | 
|   | 
|     private String Batch; | 
|   | 
|     private Double TotalNum; | 
|   | 
|     private Integer TotalCount; | 
|   | 
|     private String AccDate; | 
|   | 
|     private String VBELN; | 
|   | 
|     private String Customer; | 
|   | 
|     private Double ExpectedWeight; | 
|   | 
|     private String Container; | 
|   | 
|     private String TruckNO; | 
|   | 
|     private String LastUpdatedDate; | 
|   | 
|     private Integer State; | 
|   | 
| } |