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
package com.consum.base.pojo.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
/**
 * 功能描述: 分发单模板
 *
 * @author lxk
 * @version 1.0
 * @date 2024/5/10 10:15
 **/
@Data
public class LWhFormTransferTemplate {
 
    @ExcelProperty("一级分类")
    private String categoryOne;
    @ExcelProperty("二级分类")
    private String categoryTwo;
    @ExcelProperty("品类名称")
    private String categoryThree;
    @ExcelProperty("管理分类")
    private String type;
    @ExcelProperty("品名")
    private String goodsName;
    @ExcelProperty("规格型号")
    private String goodModelName;
    @ExcelProperty("单位")
    private String unit;
//    @ExcelProperty("物品类型")
//    private String goodsType;
//    @ExcelProperty("所在仓库")
//    private String warehouseName;
    @ExcelProperty("所属机构")
    private String agencyName;
    @ExcelProperty("供货商")
    private String supplierName;
//    @ExcelProperty("单价(元)")
//    private String price;
    @ExcelProperty("库管员")
    private String warehouseKeeper;
    @ExcelProperty("使用人")
    private String user;
    @ExcelProperty("使用人部门")
    private String userDepartment;
    @ExcelProperty("使用人联系电话")
    private String userContactPhone;
    @ExcelProperty("领用数量")
    private String num;
    @ExcelProperty("填报人")
    private String reportedBy;
 
}