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
package com.java110.po.purchase;
 
import lombok.Data;
 
/**
 * 采购申请明细
 */
@Data
public class PurchaseApplyItem {
 
    /**
     * 主键ID
     */
    private String id;
 
    /**
     * 申请单ID
     */
    private String applyOrderId;
 
    /**
     * 是否签报单
     */
    private String isSignReport;
 
    /**
     * 签报单日期
     */
    private String signReportDate;
 
    /**
     * No.
     */
    private String itemNo;
 
    /**
     * 种类
     */
    private String type;
 
    /**
     * 采购名称
     */
    private String purchaseName;
 
    /**
     * 型号
     */
    private String model;
 
    /**
     * 单位
     */
    private String unit;
 
}