WangHan
2025-04-02 a8ba678a3fe5a39da2c732014cebbb66e408e97c
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.consum.base.pojo.response;
 
import java.util.List;
 
 
import lombok.Data;
 
/**
 * @author asus
 * @version 1.0
 * @description: 采购列表明细信息
 * @date 2023/11/10 11:37
 */
// @ApiModel(value = "采购列表明细信息")
@Data
public class FormProcureVO {
 
    // 主键
    private Long id;
 
    // 属性列表
    private String businessFormCode;
 
    private Long warehouseId;
 
    private String warehouseName;
 
    private Long buyerId;
 
    private String buyerName;
 
    private Long procureTime;
 
    private String procureDoc;
 
    private Integer buyType;
 
    private Integer states;
 
    private Long agencyId;
 
    private String agencyName;
 
    private Long incomeId;
 
    private String incomeName;
 
    private Long incomeTime;
 
    private String beiz;
 
    private Long lWarehouseFlowId;
 
    private List<GoodsTemplateCountVO> fromProcureTemplateInfoList;
 
}