futian.liu
2023-12-01 79a57e0844bdd3b5f06ebaac807a0896624be70f
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
package com.consum.base.pojo.excel;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import cn.afterturn.easypoi.excel.annotation.ExcelIgnore;
import java.io.Serializable;
import lombok.Data;
 
/**
 * @author asus
 * @version 1.0
 * @description: 采购单导出模板
 * @date 2023/12/1 9:35
 */
@Data
public class ProcureExcelTemplate implements Serializable {
 
    @Excel(name = "单位")
    private String tenantName;
    @Excel(name = "物品名称")
    private String templateName;
    @Excel(name = "物品型号/规格")
    private String baseModelName;
    @Excel(name = "数量")
    private Integer num;
    @Excel(name = "单价")
    private Integer price;
    @Excel(name = "金额")
    private Integer totalAmount;
    @Excel(name = "存放地点")
    private String warehouseName;
    @Excel(name = "备注")
    private String remark;
 
 
    @ExcelIgnore
    private String businessFormCode;
    @ExcelIgnore
    private Long createTime;
    @ExcelIgnore
    private String operatorName;
}