liding
3 天以前 9bad4cfca9b9f51f433bf0caf5b5d166d1fc55a7
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.ruoyi.stock.execl;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class StockInventoryExportData {
 
 
 
    @Excel(name = "产品名称")
    private String productName;
 
    @Excel(name = "规格")
    private String model;
 
    @Excel(name = "UID码")
    private String uidNo;
 
    @Excel(name = "批号")
    private String batchNo;
 
    @Excel(name = "生产日期")
    @JsonFormat(pattern = "yyyyMMdd")
    private String productionDate;
 
    @Excel(name = "供应商")
    private String customer;
 
    @Excel(name = "单位")
    private String unit;
 
    @Excel(name = "库存数量")
    private BigDecimal qualitity;
 
    @Excel(name = "预警数量")
    private BigDecimal warnNum;
 
    @Excel(name = "冻结数量")
    private BigDecimal lockedQuantity;
 
    @Excel(name = "备注")
    private String remark;
//
//    @Excel(name = "最新更新时间")
//    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    private LocalDateTime updateTime;
 
}