| package com.zy.common.service.erp.dto; | 
|   | 
| import com.zy.common.service.erp.entity.Voucher; | 
| import com.zy.common.service.erp.entity.VoucherDetail; | 
| import lombok.Data; | 
|   | 
| import java.util.ArrayList; | 
| import java.util.List; | 
|   | 
| /** | 
|  * Created by vincent on 2022/12/8 | 
|  */ | 
| @Data | 
| public class VoucherDto { | 
|   | 
|     private Voucher voucher; | 
|   | 
|     private List<VoucherDetail> details = new ArrayList<>(); | 
|   | 
| } |