自动化立体仓库 - WMS系统
#
luxiaotao1123
2022-12-08 592f175ea0ad02c4e22cb62e77ea9e1e9cfbe516
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<>();
 
}