lishenao
9 小时以前 5c1a58d067512df6099f9cc95f577c9991128163
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
package com.ruoyi.inventory.excel;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
@Data
public class StockManagementExcelDto {
    @Excel(name = "库存日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date boundTime;
    @Excel(name = "入库时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date inboundTime;
    @Excel(name = "供应商名称")
    private String supplierName;
    @Excel(name = "产品大类")
    private String productCategory;
    @Excel(name = "规格型号")
    private String specificationModel;
    @Excel(name = "单位")
    private String unit;
    @Excel(name = "库存数量")
    private Integer stockQuantity;
    @Excel(name = "含税单价")
    private BigDecimal taxInclusiveUnitPrice;
    @Excel(name = "含税总价")
    private BigDecimal taxInclusiveTotal;
    @Excel(name = "不含税总价")
    private BigDecimal taxExclusiveTotal;
    @Excel(name = "税率")
    private BigDecimal taxRate;
    @Excel(name = "入库人")
    private String inboundPerson;
}