王佳豪
2021-05-06 b548ff3ac8e3a12bd6e5c95ddd629798b699bb0e
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 还缺一个数量
}