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
| package com.zy.common.service.erp.entity;
|
| import lombok.Data;
|
| /**
| * 通知单表体
| * Created by vincent on 2020/11/27
| */
| @Data
| public class PInStockEntry {
|
| // 物料内码
| private Integer FItemID;
|
| // 通知单内码 -- 关联
| private Integer FInterID;
|
| // 分录号
| private Integer FEntryID;
|
| // 通知数量
| private Double FQty;
|
| // 实收数量
| private Double FCommitQty;
|
|
| // todo:luxiaotao 还缺一个数量
| }
|
|