#
Junjie
2023-10-26 a3f914da5279e4182468806466f726d69379b5ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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<>();
 
}