chengf
2026-03-25 1e0e62187e2b7ff3e1fef23b182a710dc8cd76f8
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package com.java110.po.purchase;
 
import lombok.Data;
 
/**
 * 采购执行库存统计
 */
@Data
public class PurchaseApplyStock {
 
    /**
     * 主键ID
     */
    private String id;
 
    /**
     * 申请单ID
     */
    private String applyOrderId;
 
    /**
     * 采购次数
     */
    private String purchaseTimes;
 
    /**
     * 采购数量
     */
    private String purchaseQuantity;
 
    /**
     * 采购单价
     */
    private String purchasePrice;
 
    /**
     * 采购总金额
     */
    private String purchaseAmount;
 
    /**
     * 累计数量_John
     */
    private String totalQuantityJohn;
 
    /**
     * 应付金额_John
     */
    private String payableAmountJohn;
 
    /**
     * 付款次数
     */
    private String paymentTimes;
 
    /**
     * 付款总金额
     */
    private String paymentTotalAmount;
 
    /**
     * 未付金额_John
     */
    private String unpaidAmountJohn;
 
    /**
     * 未发生_John
     */
    private String unhappenJohn;
 
    /**
     * 入库数量
     */
    private String stockQuantity;
 
    /**
     * 领用数量
     */
    private String useQuantity;
 
    /**
     * 剩余数量
     */
    private String surplusQuantity;
 
    /**
     * 单价_John
     */
    private String priceJohn;
 
    /**
     * 剩余金额
     */
    private String surplusAmount;
 
    /**
     * 保管人_John
     */
    private String keeperJohn;
 
}