廖井涛
2025-04-08 d275de3d0c74be202870e90c75fe5a641f8f22c8
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
57
package com.example.erp.entity.mm;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.example.erp.entity.sd.OrderDetail;
import lombok.Data;
 
import java.time.LocalDate;
 
@Data
public class MaterialLog {
    @TableId(type = IdType.AUTO)
    @ExcelProperty("编号")
    private Long id;
    @ExcelProperty("操作单号")
    private String operationOrderNumber;
    @ExcelProperty("类型")
    private String operateType;
    @ExcelProperty("序号")
    private Integer operationNumber;
    @ExcelProperty("库存编号")
    private Long inventoryId;
    @ExcelProperty("物料编码")
    private Long materialCode;
    @ExcelProperty("物料名称")
    private String materialName;
    @ExcelProperty("产地")
    private String producer;
    @ExcelProperty("单位")
    private String unit;
    @ExcelProperty("宽度")
    private Double width;
    @ExcelProperty("高度")
    private Double height;
    @ExcelProperty("厚度")
    private Double thickness;
    @ExcelProperty("数量")
    private Integer quantity;
    @ExcelProperty("单片面积")
    private Double singlePieceArea;
    @ExcelProperty("库存区域")
    private String inventoryArea;
    @ExcelProperty("备注")
    private String remarks;
    @ExcelProperty("工程号")
    private String projectNo;
    @ExcelProperty("操作人")
    private String operator;
    @ExcelProperty("创建时间")
    private LocalDate operateTime;
 
    @ExcelProperty("优化使用数量")
    private Integer useCount;
 
 
}