1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| package zy.cloud.wms.common.service.erp.entity;
|
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * Created by vincent on 2021/3/23
| */
| @Data
| public class UploadBill {
|
| private String number;
|
| private Integer vchType;
|
| private String billDate;
|
| private String bTypeID;
|
| private String kTypeID;
|
| private String summary;
|
| // 自增
| private Double Vchcode;
|
| private Integer difAtype;
|
| private List<UploadBillDetail> detail;
|
| }
|
|