futian.liu
2023-11-30 86fdf3673cd8b3f34ed57a80556512cdcabdb202
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
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: 报废单导出excel
 * @date 2023/11/30 16:41
 */
@Data
public class ScrappedInfoExcelTemplate 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 totalAmount;
 
    @Excel(name = "报废原因")
    private String deception;
    @Excel(name = "备注")
    private String remark;
 
    @ExcelIgnore
    private String businessFormCode;
    @ExcelIgnore
    private Long dealTime;
    @ExcelIgnore
    private String operatorName;
 
 
}